Skip to content

Commit

Permalink
DOC: update installation instructions
Browse files Browse the repository at this point in the history
Updated the installation instructions to use the pyproject.toml file.
  • Loading branch information
aburrell committed Oct 19, 2023
1 parent cc7e737 commit f0a41e1
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Python 3.7+.
============== =================
Common modules Community modules
============== =================
netCDF4 pysat >= 3.0.4
netCDF4 pysat >= 3.1.0
numpy
pandas
requests
Expand Down Expand Up @@ -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 .

0 comments on commit f0a41e1

Please sign in to comment.