ERROR: Could not find a version that satisfies the requirement h5py (from versions: none)
时间: 2023-11-11 12:03:57 浏览: 122
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常是由于缺少 h5py 库导致的。您可以尝试使用以下命令安装 h5py 库:
```
pip install h5py
```
如果您已经安装了 h5py 库,但仍然遇到此错误,请尝试更新 h5py 库:
```
pip install --upgrade h5py
```
如果您使用的是 Anaconda 环境,则可以使用以下命令安装 h5py 库:
```
conda install h5py
```
阅读全文