ERROR: Could not find a version that satisfies the requirement cryptography (from versions: none)
时间: 2023-11-08 16:06:06 浏览: 146
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示通常是因为缺少依赖库的原因导致的。建议先尝试更新 pip 和 setuptools,然后再安装 cryptography 库。可以使用以下命令进行更新:
```
pip install --upgrade pip setuptools
```
然后再尝试安装 cryptography 库:
```
pip install cryptography
```
如果还是无法安装,可以尝试安装 OpenSSL 库和相关的开发包,然后再重新安装 cryptography 库。
阅读全文