Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

GiDPost can be build as library to be linked into the calculation program or as python module (look into As python module ).

This page explains how to build gidpost as library to be linked to you program.

 Third part libraries:

  • zlib: it is necessary previously obtain or compile the zlib compression library (www.zlib.net)
  • hdf5: this library is optional www.hdfgroup.org. Required only to write postprocess files with this format (files opened with GiD_PostHDF5=3 flag)

...

Code Block
apt-get install zlib1g-dev libhdf5-serial-dev
apt install python3 swig

Scientific Linux (Redhat and the like):

Code Block
yum install zlib-devel.x86_64 hdf5-devel.x86_64
yum install python3.x86_64 swig.x86_64


Note:
Bear in mind that there are several hdf5 development packages and that you should choose the right for you.
For instance, in Ubuntu these are the HDF5 development packages available:

...