From b7b600952ea8f638fedbec7ff0b2c7ad30855a9e Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Thu, 10 Sep 2020 09:03:19 -0500 Subject: [PATCH] Make sure notebook is pip installed when building docs The instructions on building the docs fail to mention that the notebook package itself needs to be installed. I was following the pip-based instructions so this fixes that case. I'm not familiar with using conda really so that case isn't fixed here. Partial #5741 --- CONTRIBUTING.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 9b581cae1..5d9a2ecd3 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -183,7 +183,7 @@ containing all the necessary packages (except pandoc), use:: If you want to install the necessary packages with ``pip``, use the following instead:: - pip install -r docs/doc-requirements.txt + pip install . -r docs/doc-requirements.txt Once you have installed the required packages, you can build the docs with::