ERROR: Could not find a version that satisfies the requirement certifi==2020.4.5.1 (from versions: none)
时间: 2023-10-13 15:29:20 浏览: 151
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常是因为你的 Python 环境缺少 certifi 库,你可以通过以下命令来安装:
```
pip install certifi==2020.4.5.1
```
如果你已经安装了 certifi,但仍然出现这个错误,那么你可以尝试更新 pip 和 setuptools:
```
pip install --upgrade pip setuptools
```
然后再重新安装 certifi 库。如果问题仍然存在,请检查你的 Python 环境是否正确配置。
阅读全文