From 39e1251ef2269cab7557d58b03f75da6cd1ca387 Mon Sep 17 00:00:00 2001 From: Sigurd Spieckermann <2206639+sisp@users.noreply.github.com> Date: Sat, 14 Oct 2023 09:09:13 +0200 Subject: [PATCH] Install extras from local package for development environment setup (#6189) --- docs/customization.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/customization.md b/docs/customization.md index a8ad77440..7891bfff3 100644 --- a/docs/customization.md +++ b/docs/customization.md @@ -301,16 +301,14 @@ Then, install all Python dependencies: === "Material for MkDocs" ``` - pip install -e . - pip install "mkdocs-material[recommended]" + pip install -e ".[recommended]" pip install nodeenv ``` === "Insiders" ``` - pip install -e . - pip install "mkdocs-material[recommended, imaging]" + pip install -e ".[recommended, imaging]" pip install nodeenv ```