Compatible with GLIBC 2.17
Install h5py before installing the whl with these commands:
UBUNTU:
apt-get install -y libhdf5-dev
#Hack so h5py setup.py finds libhdf5.so to understand the version of libhdf5 built against
#Can be undone after h5py is installed
sudo cp /usr/lib/powerpc64le-linux-gnu/hdf5/serial/libhdf5.so /usr/local/lib
pip install --global-option=build_ext \
--global-option=-I/usr/include/hdf5/serial/ \
--global-option=-L/usr/lib/powerpc64le-linux-gnu/hdf5/serial \
h5py
RHEL:
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo rpm -ihv epel-release-latest-7.noarch.rpm
sudo yum install hdf5-devel
pip install h5py
Install h5py before installing the whl with these commands:
UBUNTU:
apt-get install -y libhdf5-dev
#Hack so h5py setup.py finds libhdf5.so to understand the version of libhdf5 built against
#Can be undone after h5py is installed
sudo cp /usr/lib/powerpc64le-linux-gnu/hdf5/serial/libhdf5.so /usr/local/lib
pip install --global-option=build_ext \
--global-option=-I/usr/include/hdf5/serial/ \
--global-option=-L/usr/lib/powerpc64le-linux-gnu/hdf5/serial \
h5py
RHEL:
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo rpm -ihv epel-release-latest-7.noarch.rpm
sudo yum install hdf5-devel
pip install h5py