python3.6.8安装

下载地址:
https://www.python.org/downloads/release/python-368/

开始安装后在选择路径安装时,一定要把下方的“Add Python 3.6 toPATH”勾选上

pip 安装第三方库速度太慢
可设置 pip 从国内的镜像源下载安装

阿里云 https://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣 http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

设置方法,以清华镜像源为例:

临时使用

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple xxxxxxx

永久设置

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple/

你可能感兴趣的:(python3.6.8安装)