Windows和Linux环境下如何更换pip源?

2024年05月21日 建站教程

Windows环境更换pip源

1、打开命令提示符(Win+C,输入cmd,按回车键);

2、输入以下命令打开pip配置文件(如果没有该文件,可以新建):

notepad %APPDATA%pippip.ini

3、在打开的文件中,将以下源之一复制到文件中,保存并退出:

//清华大学源:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
//阿里云源:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple
//豆瓣源:
[global]
index-url = https://pypi.douban.com/simple

4、执行pip命令时,pip会优先从指定源下载包。

Linux环境下更换pip源:

1、打开终端,输入以下命令编辑pip配置文件(如果没有该文件,可以新建):

sudo vi ~/.pip/pip.conf

2、在打开的文件中,将以下源之一复制到文件中,保存并退出:

//清华大学源:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
//阿里云源:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple
//豆瓣源:
[global]
index-url = https://pypi.douban.com/simple

3、执行pip命令时,pip会优先从指定源下载包。

本文链接:http://so.lmcjl.com/news/5017/

展开阅读全文
相关内容