首页 > 代码库 > centos 7 python2.7.5升级到3.5.2
centos 7 python2.7.5升级到3.5.2
centos 7 python2.7.5升级到3.5.2
系统 centos 7
软件包 python3.5.2 下载:wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz
查看原有原有软件包
[root@localhost ~]# python -V
Python 2.7.5
创建Python-3.5.2的安装目录
[root@localhost ~]# mkdir /usr/local/python3.5.2
解压软件包
[root@localhost ~]# cd /usr/src
[root@localhost src]# tar zxf Python-3.5.2.tgz
进入目录
[root@localhost src]# cd Python-3.5.2/
编译
[root@localhost Python-3.5.2]# ./configure --prefix=/usr/local/python3.5.2
安装
[root@localhost Python-3.5.2]# make && make install
备份老版本
[root@localhost Python-3.5.2]# mv /usr/bin/python /usr/bin/python_2.7.5
创建软链接
[root@localhost Python-3.5.2]# ln -s /usr/local/python3.5.2/bin/python3.5 /usr/bin/python
查看现在版本
[root@localhost ~]# python -V
Python 3.5.2
升级完成
本文出自 “duyuheng” 博客,请务必保留此出处http://duyuheng.blog.51cto.com/12879147/1950620
centos 7 python2.7.5升级到3.5.2