Centos python 2.4升级到2.7

查看python的版本

 python -V
查看版本。
下载2.7.9的版本
wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz
解压缩
tar -zxvf Python-2.7.9.tgz
cd Python-2.7.9
./configure
make all
make install
 
原文地址:https://www.cnblogs.com/dreamdale/p/4378569.html