背景:
开发部需要使用python2.7,由于公网的环境python版本都是系统自带的,版本是2.6,需要升级,最好是通过RPM升级。
实施步骤:
1,下载nux 的release文件
wget http:
//li
.nux.ro
/download/nux/dextop/el6/i386/nux-dextop-release-0-2
.el6.nux.noarch.rpm
rpm -ivh nux-dextop-release-0-2.el6.nux.noarch.rpm
yum -y
install
python27
yum -y
install
python27-devel
2,升级python
Centos默认还是使用python2.6.*,需要用python2.7的文件覆盖python文件。
cd
/usr/bin/
rm
-rf python
cp
python2.7 python
3,测试
在命令行里输入python --version,如果输出的结果显示的是这样就正确了:
[root@bogon script]# python --version
Python 2.7.3
4,由于yum没有兼容python2.7,需要将下面红色的部分由 #!/usr/bin/python 修改为 #!/usr/bin/python2.6。
vi /usr/bin/yum,把下面红色的部分
#!/usr/bin/python
修改为:
#!/usr/bin/python2.6
5,安装setuptools工具,方便自动升级
wget https:
//enterprise-storage-os
.googlecode.com
/files/setuptools-0
.6c11.
tar
.gz
tar
xzvf setuptools-0.6c11.
tar
.gz
cd
setuptools-0.6c11
python setup.py
install
6,至此python升级已经完成。
7,安装扩展包
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
python ez_setup.py
本文出自 “crazy_sir” 博客,请务必保留此出处http://douya.blog.51cto.com/6173221/1441497