帮助中心FAQ

#当前版本

[root@MyCloudServer ~]# python --version

Python 2.7.5

 

[root@MyCloudServer ~]# cd /usr/local/src/

 

[root@MyCloudServer src]# yum install -y wget

 

#下载编译安装openssl工具

[root@MyCloudServer src]#  wget https://www.openssl.org/source/openssl-1.0.2l.tar.gz

 

[root@MyCloudServer src]# tar xzvf openssl-1.0.2l.tar.gz

 

[root@MyCloudServer src]# cd openssl-1.0.2l

 

[root@MyCloudServer openssl-1.0.2l]# ./config --prefix=/usr/local/ --openssldir=/usr/openssl shared zlib

 

[root@MyCloudServer openssl-1.0.2l]# make && make install

 

#下载编译安装Python3

[root@MyCloudServer src]# wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tgz

 

[root@MyCloudServer src]# tar xzvf Python-3.6.8.tgz

 

[root@MyCloudServer src]# cd Python-3.6.8

 

[root@MyCloudServer Python-3.6.8]# ./configure --prefix=/usr/local/python3 --with-ssl

 

[root@MyCloudServer Python-3.6.8]# make && make install

 

[root@MyCloudServer Python-3.6.8]# ln -s /usr/local/python3/bin/python3 /usr/bin/python3

 

[root@MyCloudServer Python-3.6.8]# ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3

 

#测试Python3

[root@MyCloudServer Python-3.6.8]# pip3 install --upgrade pip

 

#安装Python3会与Python2冲突,部分脚本命令需要Python2执行,需要灵活更改软链接。

 

#Ubuntu自带python3,对于其他Linux系统可以按照以上方法进行安装,不管虚拟机和还是物理机,亲测可以正常使用。