Last active
December 17, 2015 09:08
-
-
Save acrosby/5585180 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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