pip下载慢的问题

pip下载慢的问题

快速解决

pip install name  -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
  • 其中 name为要下载的库名称

原理

-i 指定pip源
--trusted:标记此主机为可信的,即使它没有有效的或任何HTTPS。

pip源

(1)阿里云 http://mirrors.aliyun.com/pypi/simple/
(2)豆瓣http://pypi.douban.com/simple/
(3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
(4)中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
(5)华中科技大学http://pypi.hustunique.com/

在pycharm中可以永久修改源
进入project interpreter 点击加号+,在manage Repositories中添加修改源

上一篇:java所带来的坑


下一篇:day59 pip安装django出错解决方案