Could not find a version that satisfies the requirement numpy>=1.18.2
时间: 2023-11-10 16:05:59 浏览: 300
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示意味着你需要安装版本号大于等于1.18.2的numpy库。你可以使用以下命令来安装最新版本的numpy:
```
pip install numpy
```
如果你已经安装了numpy,但是版本太低,你可以使用以下命令来升级numpy:
```
pip install --upgrade numpy
```
阅读全文