In a conda environment:
conda env create -f environment.ymlOn a Debian Linux:
sudo apt-get install build-essential cmake libcgal-dev libgudhi-dev freeglut3-dev qt6-base-dev # qtbase5-devgit submodule update --init --recursive
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
# Something strange here, I didn't find how to make GudhUI depend on submodule libQGLViewer
cd libQGLViewer
make
cd ..
cmake .
make