更换Python(pip)默认软件镜像源

pip国内的一些镜像

永久生效

linux

修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:

[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com  # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任

win

直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下

[global]
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com  # trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任

临时生效

方式一

可以在使用pip安装包的时候在后面加上-i参数,指定pip源

pip install <包> -i https://pypi.tuna.tsinghua.edu.cn/simple

方式二

先修改源在安装包

pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/

pip install <包>
posted @ 2022-01-01 19:20  pure3417  阅读(479)  评论(0编辑  收藏  举报