Python3 installation on Centos7
If you are installing the python3 on centos7 than it comes by default shipped with python 2.7.5 which is required by the core os of the centos. Now if you try to install through yum than you can't directly install the python3 instead you would require to install the software collections first. Software collections is an community project which allows you to build, install and use the multiple version of software on same system without affecting default system packages. It will enable the multiple version of the programming languages which are not available in the core repositories. To install scl run the following command # yum install centos-release-scl To install the python3 run # yum install rh-python36 You will also need to install the 'Development tools' which are required for building python modules # yum groupinstall 'Development Tools' Python virtual environments allows you to install the python modules in isolated location for a specific pro...