我正在尝试在 Windows10 64 位、Python 3.8.5、Pip 20.2.4 上进行 h5py。
使用了这个命令
pip install h5py
但这会引发错误
ERROR: Could not build wheels for h5py which use PEP 517 and cannot be installed directly
看起来这是 pep 517 和其他软件包的众所周知的问题,所以我尝试检查所有解决方案,例如
pip install --no-use-pep517 h5py
pip install --no-binary h5py
但没有任何效果。如何安装h5py?