Pip安装第三方库网速慢(解决方案)

Kohana ·
更新时间:2024-11-13
· 653 次阅读

Pip安装第三方库网速慢(解决方案)

对于Python开发用户来讲,PIP安装软件包是家常便饭。但国外的源下载速度实在太慢,容易下载超时。所以把PIP安装源替换成国内镜像,可以大幅度的提升下载速度,再也不用担心下载慢了。

国内好用的镜像 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://pypi.hustunique.com/ 山东理工大学:http://pypi.sdutlinux.org/ 豆瓣:http://pypi.douban.com/simple/
临时使用 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

注意,simple 不能少, 是 https 而不是 http

设为默认

升级 pip 到最新的版本 (>=10.0.0) 后进行配置:

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

设置成功后你的C:\Users\pip路径下会出现一个pip.ini配置文件如下图:

pip.ini配置文件

pip.ini内容如下 [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] trusted-host=mirrors.aliyun.com 注意

如果您到 pip 默认源的网络连接较差,临时使用清华的镜像站来升级 pip:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U
作者:Clever_Hui



pip安装 pip 解决方案

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章
Tricia 2020-10-13
661
Florence 2020-12-05
718