Skip to content

Instantly share code, notes, and snippets.

@acrosby
Last active December 17, 2015 09:08
Show Gist options
  • Save acrosby/5585180 to your computer and use it in GitHub Desktop.
Save acrosby/5585180 to your computer and use it in GitHub Desktop.
# Make sure g++ compiler is installed for hdf5
sudo apt-get install g++ dpkg-dev
# Download HDF5 source unpack and cd to directory
wget http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.10.tar.gz
tar -xzvf hdf5-1.8.10.tar.gz
cd hdf5-1.8.10
./configure --prefix=/usr/local --enable-shared --enable-hl
make -j 2
sudo make install
cd ..
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment