Python基础-03-设置pip源(以Windows为例)
以设置阿里镜像源为例:
配置地址 https://developer.aliyun.com/mirror/pypi?spm=a2c6h.13651102.0.0.3e221b11Xc31pf
复制配置信息
二选一即可
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
index-url = https://mirror.lzu.edu.cn/pypi/web/simple
在Windows命令行中执行
pip config edit --editor notepad
若提示不存在,则创建,命令如下
pip config set x.y z
创建成功后继续运行第一条命令将从阿里镜像源中复制的配置信息复制进去