UButntu pip 配置镜像阿里云
时间: 2024-04-14 19:20:21 浏览: 82
setting的配置,使用了阿里云镜像
对于Ubuntu系统,可以按照以下步骤配置pip镜像为阿里云:
1. 打开终端。
2. 创建pip文件夹并进入该目录,可以使用以下命令:
```
mkdir -p ~/.config/pip
cd ~/.config/pip
```
3. 在pip文件夹中创建pip.conf文件,并将以下内容复制到文件中:
```
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
```
4. 保存并关闭pip.conf文件。
5. 现在,您已经成功将pip的镜像源配置为阿里云。
阅读全文