pipy國內鏡像目前有:html
pip install django --index https://pypi.mirrors.ustc.edu.cn/simple/python
非httpslinux
pip install django --index http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.comweb
pip install django --index http://pypi.douban.com/simple/ --trusted-host pypi.douban.comdjango
http://pypi.douban.com/ 豆瓣windows
http://pypi.hustunique.com/ 華中理工大學服務器
http://pypi.sdutlinux.org/ 山東理工大學網絡
http://pypi.mirrors.ustc.edu.cn/ 中國科學技術大學框架
對於pip這種在線安裝的方式來講,很方便,但網絡不穩定的話很要命。使用國內鏡像相對好一些,url
若是想手動指定源,能夠在pip後面跟-i 來指定源,好比用豆瓣的源來安裝web.py框架:
pip install web.py -i http://pypi.douban.com/simple
注意後面要有/simple目錄!!!
要配製成默認的話,須要建立或修改配置文件(linux的文件在~/.pip/pip.conf,windows在%HOMEPATH%\pip\pip.ini),修改內容爲:
code:
[global]
index-url = http://pypi.douban.com/simple
這樣在使用pip來安裝時,會默認調用該鏡像。
更多配置參數見:http://www.pip-installer.org/en/latest/configuration.html
速度比較快的國內鏡像,都來自清華大學,服務器在北京。公網的服務器爲官方鏡像 公網:http://e.pypi.python.org/simple 教育網:http://pypi.tuna.tsinghua.edu.cn/simple