- 在根目录下创建.pip文件夹:
mkdir ~/.pip
- 在创建好的.pip文件夹下创建pip源配置文件:
touch ~/.pip/pip.conf
- 打开pip.conf配置文件:
vim ~/.pip/pip.conf
- 添加内容
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com
- 退出
:wq
- 换源
pip config set global.index-url 源地址
换成阿里云源则需要执行:
pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/