From 895f1ad91d21886b201c46bb1da996ca377b8c9c Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Thu, 31 Mar 2022 19:53:37 -0500 Subject: [PATCH] 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 --- doc/users/installing/index.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/users/installing/index.rst b/doc/users/installing/index.rst index a2ce7cea6790..fffea0301ae0 100644 --- a/doc/users/installing/index.rst +++ b/doc/users/installing/index.rst @@ -92,7 +92,12 @@ as the package index to query: .. code-block:: sh - python -m pip install --upgrade --index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple matplotlib + python -m pip install \ + --upgrade \ + --pre \ + --index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple \ + --extra-index-url https://pypi.org/simple \ + matplotlib ====================== Installing from source