首页 > 代码库 > python 国内源

python 国内源

pipy国内镜像目前有:

 

http://pypi.douban.com/  豆瓣

http://pypi.hustunique.com/  华中理工大学

http://pypi.sdutlinux.org/  山东理工大学

http://pypi.mirrors.ustc.edu.cn/  中国科学技术大学

 

手动指定源,可以在pip后面跟-i 来指定源,比如用豆瓣的源来安装web.py框架:

pip install web.py -i http://pypi.douban.com/simple

如果要永久添加,可在当前用户目录下添加如下文件

 

vi ~/.pip/pip.conf
 
[global]
index-url=http://1.2.3.4/pypi
find-links=http://1.2.3.4/pypi
no-index = true
[install]
no-index = true
index-url=http://1.2.3.4/pypi
find-links=http://1.2.3.4/pypi
 
vi ~/.pydistutils.cfg
 
[easy_install]
index-url=http://1.2.3.4/pypi
find-links=http://1.2.3.4/pypi