From 813d105534c6501d3e5be38a8cc89119a064ff25 Mon Sep 17 00:00:00 2001 From: Mathieu Blondel Date: Tue, 9 Apr 2024 23:24:19 +0200 Subject: [PATCH] Fix pip install command for doc dependencies. --- docs/development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/development.md b/docs/development.md index a7f3f7a8..d96aa646 100644 --- a/docs/development.md +++ b/docs/development.md @@ -26,7 +26,7 @@ Documentation is key, and we're particularly happy to accept documentation impro Our documentation is written in [Sphinx](https://www.sphinx-doc.org/en/master/). You can build the documentation locally as follows: -1. **Install Requirements**: `pip install .[docs]` +1. **Install Requirements**: `pip install -e ".[docs]"` 2. **Build the Docs**: From the `docs` folder, run: * `make html` (builds everything) * `make html-noplot` (faster, skips running examples)