We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bea071 commit e086582Copy full SHA for e086582
CONTRIBUTING.md
@@ -64,11 +64,14 @@ and discuss it with some of the core team.
64
You can build the documentation locally using `make`:
65
66
```bash
67
-# make sure your latest changes are installed
68
-pip install .
+# ensure pandoc is available. If not, install it: https://pandoc.org/installing.html
+pandoc --version
69
+# install darts locally in editable mode
70
+pip install -e .
71
# build the docs
72
make --directory=./docs build-all-docs
73
```
74
+
75
After that docs will be available in `./docs/build/html` directory. You can just open `./docs/build/html/index.html` using your favourite browser.
76
77
### Code Formatting and Linting
0 commit comments