Installation

The following instructions will allow you to install lstid_processing

Prerequisites

lstid_processing uses common Python modules, as well as modules developed by and for the Space Physics community.

Common modules

Community modules

cmocean

pysat

matplotlib

pysatNASA

numpy

pandas

scipy

xarray

Installation Options

PyPi

All public lstid_processing releases will be made available through the PyPi package manager at a future time.

pip install lstid_processing

Git Repository

You can keep up to date with the latest changes at the git repository.

1. Clone the git repository

git clone https://github.com/aburrell/lstid_processing.git
  1. Install lstid_processing: Change directories into the repository folder and run the pyproject.toml file. There are a few ways you can do this:

    1. Install on the system (will install locally without root privileges):

      python -m build
      pip install .
      
    2. Install with the intent to develop locally:

      python -m build
      pip install -e .