ERROR: Could not find a version that satisfies the requirement numpy==1.23.5
时间: 2023-08-03 20:38:05 浏览: 1079
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示通常是因为当前环境中没有安装指定版本的numpy模块。你可以尝试使用以下命令来安装numpy1.23.5版本:
```
pip install numpy==1.23.5
```
如果你使用的是conda环境,可以使用以下命令:
```
conda install numpy==1.23.5
```
如果以上方法仍然无法解决问题,可以尝试更新pip或conda,并重新尝试安装。
阅读全文