Follow these instruction to install editable version of this code.
Clone the repo and enter the directory synth-nfa-generator. Then activate virtual environment as in example below
python -m venv .venv
.venv/bin/activateInstall the code as editable
pip install -e .In case you want to use the notebooks then additionally install jupytext, jupyter-lab, ipykernel.
pip install jupytext jupyter-lab ipykernelUse jupytext to convert all notebooks in the format .md to .ipynb.
jupytext --to ipynb notebook/*.mdTo make the virtual env visible from jupyter use:
python -m ipykernel install --user --name 'synth'
And run jupyter lab command.