初窺Python(二)——修改pip源

pip 默認使用的源在國外(https://pypi.python.org/simple/),有時在 pip install 時下載會比較慢,爲了解決這一問題,只需作以下簡單配置。html

建立目錄及 pip.conf 配置文件:python

[root@localhost ~]# mkdir -p $HOME/.config/pip/
[root@localhost ~]# cd !$
[root@localhost pip]# vim pip.conf

添加以下內容:vim

[global]
timeout = 60
find-links = http://pypi.douban.com/simple/
trusted-host = pypi.douban.com

保存退出便可切換到豆瓣的源,以後再使用 pip install 就沒必要擔憂由於源在國外而形成的下載緩慢問題了。bash

完。ide

 

參考文檔:ui

https://pip.pypa.io/en/latest/user_guide.html#configurationspa

相關文章
相關標籤/搜索