美文网首页
python3.6.8安装

python3.6.8安装

作者: 半道出了个家 | 来源:发表于2020-05-07 21:33 被阅读0次

下载地址:
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安装

      本文链接:https://www.haomeiwen.com/subject/oenzghtx.html