Skip to content
Snippets Groups Projects

Installing dependencies

sudo apt-get install graphviz graphviz-dev # needed for pygrahviz
virtualenv .venv -p python3
source .venv/bin/activate
pip install -r requirements.txt

See changes locally

sphinx-autobuild source/ build/html --port 8044