官网:https://support.hdfgroup.org/HDF5/
1、通过安装Anaconda获取
Anaconda自带h5py,所以只需要简单安装Anaconda便可以,安装Anaconda参考我之前的博客:http://blog.csdn.net/gyguo95/article/details/78664969
2、通过源码安装
在官网下载安装包,通过以下指令安装
tar zxf hdf5-X.Y.Z.tar.gz$ cd hdf5-X.Y.Z
./configure --prefix=/your/install/dir <more configure_flags>
sudo make
sudo make check # run test suite.
sudo make install
sudo make check-install # verify installation.
安装完成后测试
python
import h5py