Install Python 3.6 on CentOS 7 - goddes4/python-study-wiki GitHub Wiki
Install Python 3.6 on CentOS 7
Requirements
# yum install gcc zlib-devel openssl-devel
Download python 3.6
# wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz
# tar xvfz Python-3.6.1.tgz
# rm Python-3.6.1.tgz
Install Python 3.6
# cd Python-3.6.1/
# ./configure
# make altinstall