File tree 1 file changed +5
-7
lines changed
1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -171,19 +171,17 @@ Building the Documentation
171
171
To build the documentation you'll need `Sphinx <http://www.sphinx-doc.org/ >`_,
172
172
`pandoc <http://pandoc.org/ >`_ and a few other packages.
173
173
174
- To install (and activate) a ` conda environment `_ named ``notebook_docs ``
174
+ To install (and activate) a conda environment named ``notebook_docs ``
175
175
containing all the necessary packages (except pandoc), use::
176
176
177
- conda env create -f docs/environment.yml
177
+ conda create -n notebook_docs pip
178
178
conda activate notebook_docs # Linux and OS X
179
- activate notebook_docs # Windows
180
-
181
- .. _conda environment :
182
- https://conda.io/docs/user-guide/tasks/manage-environments.html#creating-an-environment-from-an-environment-yml-file
179
+ activate notebook_docs # Windows
180
+ pip install .[docs]
183
181
184
182
If you want to install the necessary packages with ``pip ``, use the following instead::
185
183
186
- pip install -r docs/doc-requirements.txt
184
+ pip install .[docs]
187
185
188
186
Once you have installed the required packages, you can build the docs with::
189
187
You can’t perform that action at this time.
0 commit comments