#當(dāng)前版本
[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
#測(cè)試Python3
[root@MyCloudServer Python-3.6.8]# pip3 install --upgrade pip
#安裝Python3會(huì)與Python2沖突,部分腳本命令需要Python2執(zhí)行,需要靈活更改軟鏈接。
#Ubuntu自帶python3,對(duì)于其他Linux系統(tǒng)可以按照以上方法進(jìn)行安裝,不管虛擬機(jī)和還是物理機(jī),親測(cè)可以正常使用。