Ubuntu下更换PIP源

本文最后更新于:1 年前

备选PIP源

清华PIP源:https://pypi.tuna.tsinghua.edu.cn/simple
阿里PIP源:http://mirrors.aliyun.com/pypi/simple/
中国科技大学PIP源: https://pypi.mirrors.ustc.edu.cn/simple/
中国科学技术大学PIP源: http://pypi.mirrors.ustc.edu.cn/simple/

临时修改

单次更换PIP源,只需要在使用PIP命令时,通过PIP的-i参数来指定PIP源即可,如下所示即为使用PIP源来安装包.

1
pip install packagename -i https://pypi.tuna.tsinghua.edu.cn/simple

若上述命令出错,则需要添加trusted-host参数来指定信任的pip服务器,修改上述命令如下:

1
pip install packagename -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn

永久修改

可以采取更改PIP配置文件的方式来达到永久修改pip源的目的,首先找到~/.config/pip/pip.conf文件,对于没有此文件的情况可以创建对应的目录和文件,然后写入如下配置:

  • 创建PIP配置文件

如下代码创建了相关目录和配置文件:

1
sudo mkdir ~/.pip && cd ~/.pip && touch pip.conf
  • 写入配置

创建完成后,通过VIM直接写入如下配置:

1
2
3
4
5
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

[install]
trusted-host=pypi.tuna.tsinghua.edu.cn

这样就将PIP源永久更改至清华PIP源。


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!