Skip to content

Instantly share code, notes, and snippets.

View ari1988's full-sized avatar
:atom:
Focusing

Arvind Singh ari1988

:atom:
Focusing
View GitHub Profile
@xcsrz
xcsrz / install-python-3.9-on-centos.sh
Created May 13, 2022 15:52
Install Python 3.9 on CentOS or Amazon Linux
#!/bin/sh
sudo yum install gcc openssl-devel bzip2-devel libffi-devel zlib-devel
cd /tmp
wget https://www.python.org/ftp/python/3.9.6/Python-3.9.6.tgz
tar -xvf Python-3.9.6.tgz
cd Python-3.9.6
./configure --enable-optimizations
sudo make altinstall
python3.9 --version