pip 默认使用的源在国外(https://pypi.python.org/simple/),有时在 pip install 时下载会比较慢,为了解决这一问题,只需做如下简单配置。
创建目录及 pip.conf 配置文件:
[root@localhost ~]# mkdir -p $HOME/.config/pip/ [root@localhost ~]# cd !$ [root@localhost pip]# vim pip.conf
添加如下内容:
[global] timeout = 60 find-links = http://pypi.douban.com/simple/ trusted-host = pypi.douban.com
保存退出即可切换到豆瓣的源,之后再使用 pip install 就不必担心因为源在国外而造成的下载缓慢问题了。
完。
参考文档:
https://pip.pypa.io/en/latest/user_guide.html#configuration
本文出自 “细桶假狗屎” 博客,请务必保留此出处http://xitongjiagoushi.blog.51cto.com/9975742/1681749
原文地址:http://xitongjiagoushi.blog.51cto.com/9975742/1681749