Linux已有python2安装python3


一般默认的Linux会安装python2.7,而现在一般都使用python3.0+了,且系统的yum依赖python工具(vim /usr/bin/yum)

默认安装成功python 3.7之后会自带pip和setuptools,而python3.4或以下是需要自行安装这两个功能的。

为了兼容,本文直接用软连接将python3.7的环境变量指向/usr/bin/python3,即运行python依然会是python2.7。

详细步骤:

第一步:

python3.7要依赖包:

# yum -y install libffi-devel
# yum -y install zlib
# yum -y install openssl-devel

进入安装目录,本文缺省为/usr/local/python37

下载解压安装包:

# wget https://www.python.org/ftp/python/3.7.1/Python-3.7.1.tgz
# tar -xvf Python-3.7.1.tgz 
# cd Python-3.7.1 

第二步:

在解压目录下,配置编译参数安装:

#./configure --prefix=/usr/local/python37 
#make && make install 

(查看完整编译参数grep ./configure config.log)

第三步:

软连接python3/pip3到目录

# ln -s /usr/local/python37/bin/python3 /usr/bin/python3

# ln -s /usr/local/python37/bin/pip3 /usr/bin/pip3 

大功告成,直接输入查看版本看看

# python3 --version
# pip3 --version

其他问题归集:

1.编译的时候出现:

configure: error: in `/usr/local/python37/Python-3.7.1':
configure: error: no acceptable C compiler found in $PATH

表示连c编译器都找不到,解决方法:

# yum -y install gcc


原文链接:https://blog.yongit.com/note/129648.html