pychram中更换pip源

原本的pip源一般为国外源,在下载第三方库的速度很慢,更改pip源可以快速提高下载速度。常见pip有:

清华大学:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple
豆瓣:http://pypi.douban.com/simple

更换默认pip源步骤:

1、pip config list #查看pip现有配置

2、pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/ #修改配置文件

3、pip config set install.trusted-host mirrors.aliyun.com

可以再次输入pip config list来确认是否已经将新源写入。

你可能感兴趣的:(pip,python,开发语言)