How to Install Python 3.6.2 on CentOS 7/RHEL
Python is a powerful programming language. It is very friendly and easy to learn |
yum groupinstall “Development Tools”
yum -y install yum-utils yum-builddep python zlib-devel gcc
cd /usr/src
wget https://www.python.org/ftp/python/3.6.2/Python-3.6.2rc1.tgz
tar xzf Python-3.6.2rc1.tgz
cd Python-3.6.2rc1/
./configure
make
make install
which python3 && python3 -V
centos 7