来自
安装 yum 源
yum install https://centos7.iuscommunity.org/ius-release.rpm -y
安装 python3.6
yum install -y python36u python36u-libs python36u-devel python36u-pip
验证是否安装成功
[root@localhost ~]# python3.6 Python 3.6.5 (default, Apr 10 2018, 17:08:37) [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> exit() >>> [root@localhost ~]# pip3.6 -V pip 9.0.1 from /usr/lib/python3.6/site-packages (python 3.6)
配置国内 pip 源
mkdir .pip mkdir .pip cat >> .pip/pip.conf <<EOF [global] trusted-host = pypi.douban.com index-url = http://pypi.douban.com/simple EOF