这是在win平台下以及centos中配置
Windows
win+r输入%APPDATA%
创建pip文件夹
进入文件夹内
创建pip.ini文件
内容为:
[global]
timeout = 6000
index-url = http://pypi.douban.com/simple
trusted-host = pypi.douban.com
里面的url可以换成其他镜像源,建议是豆瓣的,比较快
Centos
是在用户根目录(~,而非系统根目录 / )下添加配置~/.pip/pip.conf目录添加可信源,如果目录文件不存在,可直接创建
[root@localhost ~]# cd ~
[root@localhost ~]# mkdir .pip
[root@localhost ~]# cd .pip
[root@localhost .pip]# vim pip.conf
在pip.conf文件中添加以下内容(这是清华源,当然自己随便弄)
[global]
index-url=https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn