InstallationΒΆ
We recommend using a virtual environment to avoid conflicts between your local Python setup and required libraries. You can use Conda or venv:
Clone/download the NeSy4PPM project.
Activate your virtual environment.
Install the dependencies listed in
requirements.txt
using:: pip install -r requirements.txt
Alternatively, you can install NeSy4PPM directly from PyPi.
For ProbDECLARE BK conformance checking, install the Lydia backend using Docker:
Pull the Lydia image:
docker pull whitemech/lydia:latest
Make the Docker image executable under the name
lydia
. On Linux and macOS machines, the following commands should work:echo '#!/usr/bin/env sh' > lydia echo 'docker run -v$(pwd):/home/default whitemech/lydia lydia "$@"' >> lydia sudo chmod u+x lydia sudo mv lydia /usr/local/bin/
More information can be found at Logaut repository.