2024年05月21日 建站教程
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
会优先从指定源下载包。
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/