From f0a41e1b7144ff9a43a8042ed943b53867d3c615 Mon Sep 17 00:00:00 2001 From: "Angeline G. Burrell" Date: Thu, 19 Oct 2023 15:49:51 -0400 Subject: [PATCH] DOC: update installation instructions Updated the installation instructions to use the pyproject.toml file. --- docs/installation.rst | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index d58e9ef2..748d3e32 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -24,7 +24,7 @@ Python 3.7+. ============== ================= Common modules Community modules ============== ================= - netCDF4 pysat >= 3.0.4 + netCDF4 pysat >= 3.1.0 numpy pandas requests @@ -70,15 +70,13 @@ You can keep up to date with the latest changes at the GitHub repository. Change directories into the repository folder and run the setup.py file. There are a few ways you can do this: - A. Install on the system (root privileges required):: + A. Install on the system (will install locally without root privileges):: - sudo python3 setup.py install - B. Install at the user level:: - - - python3 setup.py install --user + python -m build + pip install . C. Install with the intent to develop locally:: - python3 setup.py develop --user + python -m build + pip install -e .