Update linux_dependencies_install authored by Rémy Mozul's avatar Rémy Mozul
......@@ -54,7 +54,7 @@ For ubuntu 16 is the same as 18 except that `python3-vtk6` should be used and th
The necessary recommended packages needed to build and use LMGC90 are:
```shell
sudo pacman -S gcc-fortran make cmake swig python
sudo pacman -S python-numpy python-scipy python-matplotlib python-h5py
sudo pacman -S python-numpy python-scipy python-matplotlib python-h5py python-pandas
sudo pacman -S vtk glew openmpi netcdf proj gdal pugixml libtheora ffmpeg unixodbc pdal qt5-base
```
### <a name=centos> CentOS 8 </a> ###
......@@ -72,7 +72,7 @@ sudo dnf --enablerepo=powertools install hdf5-devel python3-h5py
```
Optional but recommended:
```shell
sudo dnf install python3-scipy
sudo dnf install python3-scipy python3-matplotlib python3-pandas
```
To visualize, some extra packages, not provided by the standard package repository, are needed. The recommended (simplest) way to install it
is to use `pip`. But to not mess with default installation, it is recommended to install for the current user only. Besides, for the pip package to work, there are some packages that may be not installed by default on some headless servers:
......@@ -116,11 +116,11 @@ sudo zypper install cmake gcc gcc-c++ gcc-fortran lapack-devel swig python-devel
```
Optional:
```shell
sudo zypper install zlib-devel hdf5-devel
sudo zypper install zlib-devel hdf5-devel python-h5py
```
Optional but recommended:
```shell
sudo zypper install python-scipy
sudo zypper install python-scipy python-matplotlib python-pandas
```
To visualize:
```shell
......
......