linux永久修改pip配置源的详细过程-kb88凯时官网登录

来自:网络
时间:2024-03-18
阅读:

1.在根目录下创建.pip文件夹

mkdir ~/.pip

2.在创建好的.pip文件夹下创建pip源配置文件

touch ~/.pip/pip.conf

3.使用vim打开pip.conf配置文件

vim ~/.pip/pip.conf

4.添加下述内容

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

5.保存并退出

:wq

以上就完成了pip源的配置过程。

附换源命令:

pip config set global.index-url   源地址
 
例如换成阿里云源则需要执行:
pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/

总结

返回顶部
顶部
网站地图