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
102
102
locally. It is also recommended having ` make ` (otherwise look at the commands used
103
103
in ` Makefile ` ).
104
104
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 ) .
105
112
``` bash
106
113
# Create and activate a virtual environment
107
114
python -m venv venv
108
115
source venv/bin/activate
109
116
# update the version of pip, setuptools, and wheel
110
117
(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]"
113
120
# Create the HTML to visualize locally
114
121
(venv) make html
115
122
(venv) open _build/index.html
You can’t perform that action at this time.
0 commit comments