执行pip install安装第三方模块时候因为默认使用的源是国外的,速度很慢,可以通过配置国内的源来提速.有两种方式:一是直接修改pip.ini文件,二是使用命令pip config set来修改(推荐使用,下面以此为例).
首先,我们找到要使用的源下面两个目前都是可以使用的:阿里的和清华大学的.下面以阿里的为例
然后,终端中执行命令pip config set(其实也是写的配置文件,可以参考下面的输出和ini文件内容)
pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/ pip config set install.trusted-host mirrors.aliyun.com
最后,尝试安装某个包来验证,这里pip install easygui已经正常
注:下面是清华大学的镜像,也可以使用
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple pip config set install.trusted-host pypi.tuna.tsinghua.edu.cn