Installation

The following instructions will allow you to install pysatSpaceWeather.

Prerequisites

powered by pysat Logo, blue planet with orbiting python

pysatSpaceWeather uses common Python modules, as well as modules developed by and for the Space Physics community. This module officially supports Python 3.6 and 3.9+.

Common modules

Community modules

netCDF4

pysat >= 3.1.0

numpy

pandas

requests

xarray

Installation Options

PyPi

All official pysatSpaceWeather releases are available through the PyPi package manager.

pip install pysatSpaceWeather

GitHub

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

1. Clone the git repository

git clone https://github.com/pysat/pysatSpaceWeather.git
  1. Install pysatSpaceWeather: Change directories into the repository folder and run the setup.py 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 .
      
    1. Install with the intent to develop locally:

      python -m build
      pip install -e .