1. 程式人生 > >centos7 yum 安裝 python3.6

centos7 yum 安裝 python3.6

conf roc ado nag 分享圖片 cat index glob yun

wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
yum install python36 python36-devel -y
curl https://bootstrap.pypa.io/get-pip.py|python3.6

mkdir ~/.pip

cat > ~/.pip/pip.conf <<EOF
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/

[install]
trusted-host=mirrors.aliyun.com
EOF

pip3.6 install xxxxxx 用3.6的pip安裝模塊
python3.6 xxxx.py 用python3.6執行腳本

技術分享圖片

centos7 yum 安裝 python3.6