美文网首页
Centos6 升级Python到2.7版本

Centos6 升级Python到2.7版本

作者: HelloJames | 来源:发表于2018-03-11 14:15 被阅读12次
首先, 安装依赖

···
yum -y install zlib zlib-devel
···
查看Python版本:
python --version

1. 下载python-2.7.12

wget https://www.python.org/ftp/python/2.7.12/Python-2.7.12.tgz

2, 解压到指定目录(此处解压到当前目录)

·[root@huanaCentos ~]# tar -zxvf Python-2.7.12.tgz·

3. 更改工作目录

·[root@huanaCentos ~]# cd Python-2.7.12·

4. 编译安装

···
./configure
make all
make install && make clean
make distclean
···

5. 查看版本信息

·[root@huanaCentos Python-2.7.12]# /usr/local/bin/python2.7 -V·

6. 建立软链接, 使系统默认的python指向python.27

·[root@huanaCentos Python-2.7.12]# mv /usr/bin/python /usr/bin/python2.6.6·
·[root@huanaCentos Python-2.7.12]# ln -s /usr/local/bin/python2.7 /usr/bin/python·

7. 重新检测Python版本

·[root@huanaCentos Python-2.7.12]# python -V·

8. 修改yum配置, 使用yum使用指定的python版本

解决系统 Python 软链接指向 Python2.7 版本后,因为yum是不兼容 Python 2.7的,所以yum不能正常工作,需要指定 yum 的Python版本

#vi /usr/bin/yum  
将文件头部的
#!/usr/bin/python
改成
#!/usr/bin/python2.6.6

相关文章

网友评论

      本文标题:Centos6 升级Python到2.7版本

      本文链接:https://www.haomeiwen.com/subject/fyqwfftx.html