How To Install Python3 On CentOS 7
-
yum update -y
-
yum install -y python3
-
python3 (Ctrl+D to exit python shell)
-
yum install gcc openssl-devel bzip2-devel libffi-devel -y
-
curl -O https://www.python.org/ftp/python/3.8...
-
tar -xzf Python-3.8.1.tgz
-
cd Python-3.8.1/
-
./configure --enable-optimizations
-
make altinstall
-
python3.8