[如何使用global]index-url = https://mirrors.ustc.edu.cn/pypi/web/simple
时间: 2023-10-31 08:57:40 浏览: 215
Centos7.6/7.9系统安装DELL OMSA说明
`global` 在 Python 中是一个关键字,不能作为变量名或函数名使用。不过,从你提供的信息来看,你想设置 PyPI 的镜像源为中科大镜像源,可以在你的 `pip.conf` 或 `pip.ini` 文件中添加以下内容:
```
[global]
index-url = https://mirrors.ustc.edu.cn/pypi/web/simple
```
这样,当你使用 `pip install` 安装 Python 包时,就会从中科大的镜像源下载,而不是官方源。
阅读全文