ERROR: Could not find a version that satisfies the requirement idna==2.9 (from versions: none)
时间: 2023-09-28 21:07:32 浏览: 56
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示可能意味着你的Python环境中缺少idna这个库的正确版本。你可以尝试在命令行中使用以下命令来安装idna库:
```
pip install idna==2.9
```
如果你使用的是conda环境,可以使用以下命令:
```
conda install -c anaconda idna==2.9
```
如果以上方法都不能解决问题,那么你可以尝试更新pip工具或者Python本身,或者检查是否存在其他的依赖库版本不兼容的情况。
阅读全文