Create a virtual env for Python:
python -m venv .envActivate the virtual env:
source .env/bin/activateInstall the requirements:
pip install -r requirements.txtCompile the rust packages:
maturin developNow you should be able to run the test file:
cd python
python3 framework_test.pyInstall docker compose and run:
docker-compose up -dYou can check the connection by connnecting to the local db:
psql postgres://user:password@localhost:5432/db
Then you can run the sensitivity analysis
cd python
python3 sensitivity_plots.py
Note that this will take some time to finish.