对于国内来说,用默认的源是在速度太慢了,每秒就几kb,
修改源,首先需要创建配置文件,路径如下:
linux和macos:
~/.pip/pip.conf
windows :
%userprofile%\pip\pip.ini(C:\Users\Corek\pip\pip.ini)
我win10和macos和ubuntu环境都配置过:
以下ubuntu为例,除了配置文件路径不同,内容都是一行的
具体操作
cd ~
mkdir .pip
vi .pip/pip.conf
输入一下内容,保存并退出就好了
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
超级快吧。
===附上easy_install修改源方法,我没测试过==
easy_install的添加方法:
创建配置文件:
Windows下是在: ~\pydistutils.cfg
Linux下是在: $HOME/.pydistutils.cfg
内容
[easy_install]
index-url=http://pypi.douban.com/simple