blob: 4ffb08390331820147755d8b747bc9729852845a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Building documentation locally
This process will improve over time.
For now, manually create a Python virtual environment and install the
dependencies:
```shell
make venv
```
The virtualenv will be created in **_venv**.
Then to build the documentation:
```shell
make html
```
|