Install Python 2.7 on CentOS 6.x
CentOS 6.x uses python 2.6 for various things. It is the default install and Python 2.7 is not available as a typical install but I had a need for it and found a solution that worked for me. yum -y update yum install -y centos-release-SCL yum install -y python27 scl enable python27 bash The test. python -V Python 2.7.13 cat…
Read More »