标签:
直接使用pip安装时非常慢,而且还非常容易失败。通过在网上查找,发现可以使用镜像安装,如下:
pip install xxx -i http://pypi.douban.com/simple/
但是在我的系统上(OSX)却总是安装失败,提示 No matching distribution found for requests。
后来试了一下,只要如下输入就可以成功:
pip install xxx -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
标签:
原文地址:http://www.cnblogs.com/slegetank/p/4677645.html