Centos7通過(guò)yum安裝python 3.6
? Centos默認(rèn)的源里面沒(méi)有python3.6,想要通過(guò)yum安裝python的話(huà)就需要導(dǎo)入其他yum源(EPEL)硕噩。官網(wǎng)地址https://fedoraproject.org/wiki/EPEL骇径。
1.安裝EPEL源
? 參考官網(wǎng)的教程躯肌,輸入如下命令:
# yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
2.安裝python3
# 安裝python3
yum install python36
# 使用python3
python36
3.安裝pip
# 下載get-pip.py
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
# 使用python運(yùn)行腳本
python36 get-pip.py