Could not find a version that satisfies the requirement anaconda-client==1.9.0
时间: 2023-11-22 09:50:20 浏览: 91
您遇到的问题是安装anaconda-client==1.9.0时出现了“Could not find a version that satisfies the requirement”的错误。这通常是由于pip源的问题导致的。您可以尝试以下步骤解决该问题:
1.升级pip版本:
```shell
pip install --upgrade pip
```
2.更换pip源为国内源:
```shell
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
```
3.重新安装anaconda-client==1.9.0:
```shell
pip install anaconda-client==1.9.0
```
阅读全文