最近用pip install安装第三方库下载速度极其的慢,从图中提示信息看到HTTS老是出现丢包,在这里更换pip为国内源解决问题。
pip.png
Windows下更换镜像源
打开C盘用户目录%Users/${username}/%, 如(C:/Users/用户名/), 在此目录下创建pip文件夹
- 在pip目录下创建pip.ini文件, 内容如下
[global]
index-url = [https://pypi.tuna.tsinghua.edu.cn/simple](https://pypi.tuna.tsinghua.edu.cn/simple)
[install]
trusted-host = [https://pypi.tuna.tsinghua.edu.cn](https://pypi.tuna.tsinghua.edu.cn/)
Linux下更换镜像源
* 修改**~/.pip/pip.conf**文件, 没有则创建
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
pip国内的一些镜像
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
网友评论