Windows 和 Linux 给 python pip 设置永久清华镜像源

Windows 和 Linux 给 python pip 设置永久清华镜像源

一般情况下,使用清华镜像下载单个软件包可以使用 pip install xxx -i https://pypi.tuna.tsinghua.edu.cn/simple 下载。
但如果不想每次都写 -i 就需要配置一下电脑。

配置方法如下:

1 Windows

windows下,直接在user目录中找到(没有就创建)一个pip目录,如:C:\Users\xx\pip,找到(没有就新建)文件pip.ini

pip.ini添加内容

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn

Windows 和 Linux 给 python pip 设置永久清华镜像源_第1张图片

2 Linux

Linux下,修改 ~/.pip/pip.conf (没有就创建一个文件夹及文件。文件夹要加“.”,表示是隐藏文件夹)。

添加同样的内容

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn

3 其他

可以使用下面两个 cmd 命令修改

# 1
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 2设置为信任源
pip config set install.trusted-host pypi.tuna.tsinghua.edu.cn

pypi | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror

你可能感兴趣的:(python随笔,python,linux,windows)