centos6 yum升级python2.6到2.7
今天在测试服上安装docker compose的时候,pip居然给我报要python2.7的版本才能安装,我去,对于我这样很懒的人来说,不想编译安装来对python升级,下面给大家一个直接yum就可以升级python版本的方法.
系统:centos 6.x(64位)
软件环境:python 2.6.x
1.升级前准备
yum install centos-release-SCL
2.安装python2.7
yum install scl-utils python27 python27-scldevel -y
ps:yum在这里的速度可能有点慢,大家要耐心多等会.
3.临时使用python2.7
scl enable python27 bash
python -V
Python 2.7.8
可以看到python已经是2.7了.
ps:
https://github.com/certbot/certbot/issues/1106
系统:centos 6.x(64位)
软件环境:python 2.6.x
1.升级前准备
yum install centos-release-SCL
2.安装python2.7
yum install scl-utils python27 python27-scldevel -y
ps:yum在这里的速度可能有点慢,大家要耐心多等会.
3.临时使用python2.7
scl enable python27 bash
python -V
Python 2.7.8
可以看到python已经是2.7了.
ps:
https://github.com/certbot/certbot/issues/1106
评论: