修改Python默认源的另一种方法
网上的做法千篇一律,有趣的方法万里挑一,今儿个分享个不同的方法:
- 直接修改Python环境内的文件
比如Python27/Lib/site-packages/pip/models/index.py
将PyPI = Index('https://pypi.python.org/')
改为为需要的源即可
比如豆瓣源PyPI = Index('https://pypi.douban.com/')
- 命令行里临时换源
pip install -i http://pypi.douban.com/simple/ mrq --trusted-host pypi.douban.com
网友评论