pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ ERROR: unknown command "config"
时间: 2023-12-13 07:05:09 浏览: 241
tensorflow安装遇到的问题
这个错误表示您使用的命令不正确。请尝试使用以下命令来设置pip默认镜像源:
```
pip install -i https://mirrors.aliyun.com/pypi/simple/ --upgrade pip
```
这将使用阿里云的镜像源来升级pip并设置为默认源。如果您已经安装了pip,只需运行以下命令即可更改已有的配置:
```
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
```
请确保您已经正确安装了pip,并且在命令行中输入命令时,当前目录在系统路径中。
阅读全文