2024-05-10 05:05:42 +02:00
|
|
|
## Building the docs
|
2024-06-09 17:20:55 +02:00
|
|
|
Install Sphinx and additional dependencies using pip, Python's package manager. Open your command line interface
|
|
|
|
inside the :file:`openrocket/docs` directory and run:
|
2024-05-10 05:05:42 +02:00
|
|
|
```bash
|
2024-06-09 17:20:55 +02:00
|
|
|
pip install -r requirements.txt
|
2024-05-10 05:05:42 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Build the docs by running in the `docs` directory:
|
|
|
|
```bash
|
|
|
|
make html
|
|
|
|
```
|
|
|
|
|
|
|
|
To clean your build (necessary when you change the theme or make other changes to the build configuration), run:
|
|
|
|
```bash
|
|
|
|
make clean
|
|
|
|
```
|