Skip to content

Commit 895f1ad

Browse files
DOC: Correct nightly wheels pip install command
Add the --pre flag to allow for a dev release to take precedence over a stable release and the --extra-index-url of https://pypi.org/simple to allow for matplotlib's dependencies to still get installed normally. Co-authored-by: Ian Hunt-Isaak <[email protected]>
1 parent d8ede1a commit 895f1ad

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

doc/users/installing/index.rst

+6-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,12 @@ as the package index to query:
9292

9393
.. code-block:: sh
9494
95-
python -m pip install --upgrade --index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple matplotlib
95+
python -m pip install \
96+
--upgrade \
97+
--pre \
98+
--index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple \
99+
--extra-index-url https://pypi.org/simple \
100+
matplotlib
96101
97102
======================
98103
Installing from source

0 commit comments

Comments
 (0)