pip配置在linux默認的路徑是
$HOME/.pip/pip.conf
在windows默認的路徑是
%HOME%\pip\pip.ini
默認路徑下并不存在配置文件遣妥,需要新建,然后在配置文件中寫入:
[global]
index-url = http://pypi.mirrors.ustc.edu.cn/simple/
中國的PyPI鏡像源插龄,最上方的源在我這訪問速度最快牙躺,速度依次向下遞減,所以試一試前幾個就好了。
阿里云 http://mirrors.aliyun.com/pypi/simple/
中國科技大學 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
Python官方 https://pypi.python.org/simple/
v2ex http://pypi.v2ex.com/simple/
中國科學院 http://pypi.mirrors.opencas.cn/simple/
清華大學 https://pypi.tuna.tsinghua.edu.cn/simple/
二定鸟、如何使用鏡像源
使用鏡像源很簡單,用-i指定就行了著瓶,例如:
sudo easy_install -i http://pypi.douban.com/simple saltTesting
sudo pip install -i http://pypi.douban.com/simple saltTesting