码迷,mamicode.com
首页 > 编程语言 > 详细

CentOS 7.0 下 Python 2.7 升级到 Python 3.5

时间:2018-02-12 13:34:19      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:需要   zip2   时间   line   修改   mkdir   版本   config   3.5   

前段因为时间工作需要,要把 Centos 7.0 默认安装的 Python 2.7 升级到 Python 3.5。

具体操作如下:

# 安装 gcc gcc-c++ 等编译工具软件

yum install openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel gcc gcc-c++ wget -y

 

# 创建保存软件的目录

mkdir /home/tools && cd /home/tools/

 

# 下载 Python 3.5 版本

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

 

# 解压编译安装

tar -zxf Python-3.5.0.tgz
mkdir /usr/local/python3
Python-3.5.0/configure --prefix=/usr/local/python3
make
make install

 

 # 这里需要备份还原系统 yum 命令使用的 Pyhon2.7 

cd /usr/bin
mv python python.bak,
ln -s /usr/local/python3/bin/python3 /usr/bin/python
ln -s /usr/local/python3/bin/python3 /usr/bin/python

 

# 修改yum配置文件

vi /usr/bin/yum

改成: #!/usr/bin/python2.7

 

现在可以愉快地使用 Python 3.5 了~

CentOS 7.0 下 Python 2.7 升级到 Python 3.5

标签:需要   zip2   时间   line   修改   mkdir   版本   config   3.5   

原文地址:https://www.cnblogs.com/klvchen/p/8444103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!