banner
李大仁博客

李大仁博客

天地虽大,但有一念向善,心存良知,虽凡夫俗子,皆可为圣贤。

[Linux]CentOS安装或升级Python到2.7.5

CentOS6.4 下的默认安装的 Python 版本为 2.6.6,很多程序需要在 2.7 下才能运行。

1. 安装 wget,CentOS 最小安装模式下未安装。

yum install wget

2. 下载和编译 python 2.7,当前最新版本为 2.7.5

wget http://www.python.org/ftp/python/2.7.5/Python-2.7.5.tar.bz2
tar jxvf Python-2.7.5.tar.bz2
cd Python-2.7.5
./configure
make
make install

3. 做好连接,保留旧版本 python

mv /usr/bin/python /usr/bin/python2.6.6
ln -s /usr/local/bin/python2.7 /usr/bin/python

4. 修改 yum 的 python 配置,以免无法使用

vi /usr/bin/yum

修改第一行的
#!/usr/bin/python

#!/usr/bin/python2.6.6

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.