RedHat5.5安装Python2.6的方法

发布时间:2020-04-07编辑:脚本学堂
本文介绍下,在redhat5.5系统中安装python2.6的方法,有需要的朋友参考下。

redhat5.5中安装python2.6的方法:
 

复制代码 代码示例:
wget http://mirrors.ircam.fr/pub/ius/stable/Redhat/5/x86_64/epel-release-5-4.noarch.rpm
wget http://mirrors.ircam.fr/pub/ius/stable/Redhat/5/x86_64/ius-release-1.0-10.ius.el5.noarch.rpm

rpm -ivh  分别安装刚才下的两个rpm包。
安装好后,直接yum list python26,如果出现这个包,说明正常了。

然后:
 

复制代码 代码示例:
yum install python26_x86_64
rm -f /usr/bin/python
ln -s /usr/bin/python26 /usr/bin/python

运行完毕后,此时系统默认的 python 已经是 2.6 版了。

然而,yum 是基于 python2.4 的,因此会出现故障。

解决方法:
# nano /usr/bin/yum
将第一行末的 python 后加上 2.4,即将第一行改为:
#!/usr/bin/python2.4

这样,yum 依然使用 python 2.4 环境运行,一切恢复正常。

此时输入 python -V 即可看到当前的 python 版本:
 

复制代码 代码示例:
# python -V
Python 2.6.8