我们可以通过下面的命令设置全局pip的源,下面设置是阿里的源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
pip config set install.trusted-host mirrors.aliyun.com
常用的其他的镜像源有如下: 1. https://mirrors.aliyun.com/pypi/simple 阿里云的源 2. https://pypi.tuna.tsinghua.edu.cn/simple 清华源 3. https://pypi.mirrors.ustc.edu.cn/simple 中国科技大学 4. https://pypi.doubanio.com/simple 豆瓣源
注意trusted-host就是地址的域名
如果出现 Cannot connect to proxy 错误 说明你电脑设置代理了
# 大部分代理软件用的是这个地址, 最好自己看下自己电脑设置的代理地址
# 全局设置下pip的代理地址
pip config set global.proxy "127.0.0.1:7890"
1