Centos升级Python
Posted 头痛不头痛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos升级Python相关的知识,希望对你有一定的参考价值。
因为CentOS系统中旧版本的Python已被深度依赖,所以不能卸载原有的Python,只能全新安装。
1.从官网下载:
wget https://www.python.org/downloads/release/python-2712/
2.解压安装,命令如下
tar -xvf Python-2.7.6.tgz cd Python-2.7.6 ./configure --prefix=/usr/local/python2.7 make make install
3.创建链接来使系统默认python变为python2.7
ln -fs /usr/local/python2.7/bin/python2.7 /usr/bin/python
4.查看python版本
[[email protected] ~]$ python -V Python 2.7.12
5.修改yum配置(否则yum无法正常运行)
vi /usr/bin/yum
将第一行的#!/usr/bin/python修改为系统原有的python版本地址#!/usr/bin/python2.6
以上是关于Centos升级Python的主要内容,如果未能解决你的问题,请参考以下文章