Changes
Page history
add HDF5 to prerequisites
authored
Mar 06, 2017
by
Rémy Mozul
Hide whitespace changes
Inline
Side-by-side
linux_dependencies_install.md
View page @
6fd7730d
...
...
@@ -27,6 +27,10 @@ To compile:
```
shell
sudo
apt-get
install
cmake gcc g++ gfortran liblapack-dev swig python-dev python-numpy
```
Optional:
```
shell
apt-get
install
libhdf5-dev
``
To visualize:
```
shell
sudo apt-get install python-vtk paraview
...
...
@@ -51,6 +55,10 @@ To compile:
```
shell
sudo zypper install cmake gcc gcc-c++ gcc-fortran lapack-devel swig python-devel python-numpy-devel
```
Optional:
```
shell
zypper install zlib-devel hdf5-devel
```
To visualize:
```
shell
sudo zypper install python-vtk paraview
...
...
@@ -78,6 +86,13 @@ To compile:
```
shell
sudo yum install git cmake gcc gcc-c++ gcc-gfortran lapack-devel swig python-devel numpy
```
Optional:
As HDF5 library is not provided by standard repository, an extra repository
must be added before installing dependencies:
```
shell
yum install epel-release
yum install hdf5-devel
```
To visualize, some extra packages, not provided by the standard package repository, are
needed. Thus an extra repository must be added before installing the dependencies:
```
shell
...
...
...
...