第三篇.python编辑器和集成环境01

修改python的镜像源

使用pip可以提高网速
\Lib\site-packages\pip\models\index.py文件,将PYPI的值改为你所需要的镜像源即可,例如改为豆瓣镜像源:

#PyPI = Index('https://pypi.python.org/')  
PyPI = Index('https://pypi.douban.com/')

猜你喜欢

转载自www.cnblogs.com/demiao/p/11253813.html