Install Python 3.6 on Centos

Mar 14, 2017 23:13


yum install gcc
yum install zlib-devel openssl-devel
cd /usr/src
wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz
tar xzf Python-3.6.0.tgz
cd Python-3.6.0/
./configure
make artinstall

centos, python

Previous post
Up