From 0de2cd9231271e9a585eabf2d9c33a72f6cf1ee0 Mon Sep 17 00:00:00 2001 From: softwareengineerprogrammer <4056124+softwareengineerprogrammer@users.noreply.github.com> Date: Mon, 8 Jul 2024 10:14:30 -0700 Subject: [PATCH] Move pip package installation instruction above editable installation to keep it from getting lost in the editable instructions --- README.rst | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/README.rst b/README.rst index d123a699..571a9575 100644 --- a/README.rst +++ b/README.rst @@ -86,6 +86,17 @@ The short URL `bit.ly/GEOPHIRES `__ redirects to the s Installation ------------ +Pip Package +^^^^^^^^^^^ + +If you do not need to view or edit GEOPHIRES-X source code, you can consume GEOPHIRES-X as a regular, non-editable python package:: + + pip3 install https://github.com/NREL/GEOPHIRES-X/archive/main.zip + + +.. (Eventually package will be published to PyPi, enabling ``pip install geophires-x``) + + Editable Installation (Recommended) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -142,15 +153,6 @@ To update the editable installation with the latest GEOPHIRES version:: # resolve merge conflicts, if any pip install -e . -Pip Package -^^^^^^^^^^^ - -If you do not need to view or edit GEOPHIRES-X source code, you can consume GEOPHIRES-X as a regular, non-editable python package:: - - pip3 install https://github.com/NREL/GEOPHIRES-X/archive/main.zip - - -.. (Eventually package will be published to PyPi, enabling ``pip install geophires-x``) Usage