简体   繁体   中英

Can't install h5py

I am trying to h5py on Windows10 64bit, Python 3.8.5, Pip 20.2.4.

Used this command

pip install h5py

But this throws an error

ERROR: Could not build wheels for h5py which use PEP 517 and cannot be installed directly

Looks like it's quite known issue for pep 517 and other packages, so i try to check all of the solutions like

pip install --no-use-pep517 h5py
pip install --no-binary h5py

But nothing works. How can I install h5py ?

Installing versioned-hdf5 will solve this issue.

pip install versioned-hdf5

Now do pip install h5py

Found a solution - I was trying to install on Python3.8.5 32bit. Switching to 64bit just solved the issue.

I'm not sure if you're getting any other kind of dependencies errors besides this. In my case, I had additional details about the missing dependency libhdf5.so. It stated: " error: libhdf5.so cannot open shared object file: No such file or directory" .

I checked the h5py documentation to make sure I had the right versions of pip and setuptools, https://pip.pypa.io/en/stable/reference/pip/ .

pip install --upgrade pip setuptools wheel

I installed the libhdf5.so library by running below code and that solved it for me:

sudo apt-get install libhdf5-dev

I've come across similar PEP 517 errors caused by missing dependencies:

  1. ERROR: Could not build wheels for glpk which use PEP 517 and cannot be installed directly
  2. ERROR: Could not build wheels for scipy which use PEP 517 and cannot be installed directly

PEP 517 错误

For windows use pip install versioned-hdf5 . This will work Then you can also install Keras easily.

I ran into the same problem while trying to install qiskit, which also (needed smth which needed smth which...) needed h5py. I got the same error message, but none of the answers here worked.

The first found workaround for me was installing h5py from https://www.lfd.uci.edu/~gohlke/pythonlibs/#h5py , which, although seems being quite on-own-risk, is also specified in https://docs.h5py.org/en/stable/build.html#wheels .

I used python 3.8 on Win7, 32 bit. For my purposes, installing h5py 3.4 did not work, but installing 2.1 did (I think the concrete package just needed 2.1 and ignored 3.4).

Commands used:

pip install <full path to downloaded .whl file, can be copied from file properties>

pip install <wanted package, for me quiskit, for example>

使用特定版本的 h5py 例如你可以使用命令:

pip install h5py==2.9.0

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM