File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -102,14 +102,21 @@ tool. You must have a recent version of Python 3.6+ installed to build the proje
102102locally. It is also recommended having ` make ` (otherwise look at the commands used
103103in ` Makefile ` ).
104104
105+ The ` dot ` program from Graphviz is needed to render some of the diagrams.
106+
107+ * For Debian/Ubuntu users:
108+ ``` bash
109+ sudo apt get install graphviz
110+ ```
111+ * For non-Debian/Ubuntu users, follow the directions at [ the GraphViz download site] ( https://graphviz.org/download ) .
105112``` bash
106113# Create and activate a virtual environment
107114python -m venv venv
108115source venv/bin/activate
109116# update the version of pip, setuptools, and wheel
110117(venv) pip install -U pip setuptools wheel
111- # Install the dependencies in your virtual environment
112- (venv) pip install .[all]
118+ # Install all the dependencies in your virtual environment.
119+ (venv) pip install " .[all]"
113120# Create the HTML to visualize locally
114121(venv) make html
115122(venv) open _build/index.html
You can’t perform that action at this time.
0 commit comments