通過幾次pip的使用,對于默認的pip源的速度實在無法忍受,于是便搜集了一些國內(nèi)的pip源,如下:
豆瓣(douban) http://pypi.douban.com/simple/
中國科學技術(shù)大學 http://pypi.mirrors.ustc.edu.cn/simple/
使用方法很簡單,直接 -i加 url 即可!如下:
pip install web.py -i http://pypi.douban.com/simple
如果出現(xiàn)報錯,請使用命令:
pip install web.py -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
如果想配置成默認的源,需要創(chuàng)建或修改配置文件,方法如下:
windows
~/.pip/pip.conflinux
%HOMEPATH%\pip\pip.ini
添加或修改內(nèi)容為:
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com</pre>