ERROR: No matching distribution found for tensorflow==1.14.0
时间: 2023-09-27 17:08:37 浏览: 304
tensorflow_gpu-2.0.0+nv19.11-linux_aarch64.whl
这个错误提示意味着找不到符合条件的 TensorFlow 1.14.0 版本的安装包。可能是因为该版本已经不再支持或者您的环境不兼容。建议您尝试安装其他版本的 TensorFlow 或者更新您的环境。您可以尝试安装最新版的 TensorFlow,即使用以下命令:
```
pip install tensorflow
```
如果您需要安装特定版本的 TensorFlow,可以修改版本号,例如:
```
pip install tensorflow==2.0.0
```
阅读全文