Python修改pip镜像源为国内镜像源(永久方法)
- 更换为国内镜像源
首先你得去国内各大镜像站看看,国内各大镜像站都有更换pypi源得教程和方法,这里我例举一下国内常见的开源镜像站
点击查看代码
阿里云开源镜像站 http://mirrors.aliyun.com/
网易开源镜像站 http://mirrors.163.com/
搜狐开源镜像 http://mirrors.sohu.com/<details>
浙江大学开源镜像站 http://mirrors.zju.edu.cn/
清华大学开源软件镜像站 https://mirrors.tuna.tsinghua.edu.cn/
中国科学技术大学 http://mirrors.ustc.edu.cn/
腾讯开源镜像站 http://mirrors.cloud.tencent.com/pypi/simple
豆瓣开源镜像站 http://pypi.douban.com/simple/
(1)随便进入一个镜像站:这里我以中科大镜像站为例,进入官网->往下滑->点击Mirrors 帮助底下的配置软件源
(2)左上角搜索框输入Pypi,然后点击右边框的Pypi镜像源使用帮助
(3)此时该页面就用永久配置和临时配置的方法
(4)此时我使用永久配置,复制命令输入
## 配置中科大镜像
pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/web/simple
# 配置阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 配置腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 配置豆瓣源
pip config set global.index-url http://pypi.douban.com/simple/
(5)当你输入完命令的时候命令行会提示你文件保存在哪里
(6)此时当你使用pip命令安装的时候,还是会报一个警告,警告为WARNING: The repository located at mirrors.
- 将镜像源设置为信任
(1)编辑刚才的pip文件...\pip\pip.ini,在最低行添加trusted-host = mirrors.cloud.tencent.com,此时该文件内容为:
[global]
index-url = http://mirrors.cloud.tencent.com/pypi/simple
trusted-host = mirrors.cloud.tencent.com
————————————————
原文链接