We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 504ef1c commit a5a2603Copy full SHA for a5a2603
CONTRIBUTING.md
@@ -1,3 +1,24 @@
1
# Contributing guide
2
3
Page in construction, for now go to https://github.com/pymc-devs/pymc-extras#questions.
4
+
5
+## Building the documentation
6
7
+To build the documentation locally, you need to install the necessary
8
+dependencies and then use `make` to build the HTML files.
9
10
+First, install the package with the optional documentation dependencies:
11
12
+```bash
13
+pip install ".[docs]"
14
+```
15
16
+Then, navigate to the `docs` directory and run `make html`:
17
18
19
+cd docs
20
+make html
21
22
23
+The generated HTML files will be in the `docs/_build/html` directory. You can
24
+open the `index.html` file in that directory to view the documentation.
0 commit comments