Could not find a version that satisfies the requirement numpy<2.0,>=1.16.0 (from tensorflow-gpu) (from versions: none)
时间: 2023-11-10 13:07:11 浏览: 45
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示是因为 tensorflow-gpu 需要安装 numpy 的版本在 1.16.0 到 2.0 之间,但当前环境中没有符合要求的 numpy 版本。您可以尝试升级或降级 numpy 版本来解决这个问题。
升级 numpy 版本的命令为:
```
pip install --upgrade numpy
```
降级 numpy 版本的命令为:
```
pip install numpy==1.16.0
```
阅读全文