It took some time to install h5py, so I will post it as a memo. When building from source, a lot of errors such as "no such h5py.h" were output and it was hell, so the method to install quickly is described below.
The official announcement of h5py strongly recommends using Anaconda and Miniconda. However, if you want to install from source, follow the steps below.
Download the h5py wheel that suits your environment from Python Extension Packages for Windows --Christoph Gohlke. I'm using Python 3.4 on Windows 10, so I used "h5py-2.6.0-cp34-cp34m-win32.whl".
Just hit the following command.
pip install h5py-2.6.0-cp34-cp34m-win32.whl
That's it.
It seems that from Chainer1.5 depends on h5py, I hope that those who are having trouble installing h5py can refer to it.
that's all
Recommended Posts