土曜日, 8月 12, 2017

Ubuntu 16.04でVisit+Athena++環境構築(その1)

1. まずはgitをインストール
sudo apt-get install git

2. Athena++をダウンロード
git clone https://github.com/PrincetonUniversity/athena-public-version

3. hdf5ライブラリをインストール
https://www.hdfgroup.org/downloads/hdf5/source-code/
からtar.gzをダウンロード

tar.gzを解凍。

解凍されたディレクトリに移動。

./configure --prefix=/usr/local/hdf5 --enable-fortran --enable-cxx
make -j8
make -j8 check
sudo make install
sudo make check-install