方法一
简介
PyPI (Python Package Index) 是 Python 编程语言的软件存储库。开发者可以通过 PyPI 查找和安装由 Python 社区开发和共享的软件,也可以将自己开发的库上传至 PyPI 。
PyPI 镜像参考 阿里巴巴开源镜像站
参考链接 https://mirrors.aliyun.com/pypi/
配置方法
a. 找到下列文件(windows目录:C:\Users\Administrator)
~/.pip/pip.conf
b. 在上述文件中添加或修改:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
方法二
直接运行这个命令就能配置镜像了,不用手动创建文件。pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/