Installation
From conda-forge
The recommended way to install evalhyd-cli
is to use a conda
-like
package manager and the conda-forge channel:
$ mamba install -c conda-forge evalhyd-cli
From source
To build evalhyd-cli
from source, cmake
can be used.
Tip
It is recommended that the dependencies are installed using mamba
:
$ mamba create -n evalhyd-env -f environment.yml
$ mamba activate evalhyd-env
Then, the steps below can be followed:
$ cmake -B build/ -D CMAKE_BUILD_TYPE=Release -D CMAKE_PREFIX_PATH="${CONDA_PREFIX}"
$ cmake --build build/ --parallel
$ export PATH="${PWD}/build/apps/:${PATH}"
$ (cd ./tests && python run_all_tests.py)
$ cmake --install build/ --prefix <path>