Skip to content

v0.3.2 install instructions for test pypi

Jeff Klenzing edited this page Sep 5, 2022 · 4 revisions
pip install -r requirements.txt
  • Install test distribution. (Note that requirements must be installed first, most are out of date on the test server)
pip install -i https://test.pypi.org/simple/ pysatMissions==0.3.2rc2 --no-deps
  • If this is your first time installing pysat, you need to set a data directory. This only needs to be run once.
import pysat
pysat.params['data_dirs'] = 'path/that/exists'
  • In a python terminal, load an instrument
import pysat
import pysatMissions

sgp4 = pysat.Instrument(inst_module=pysatMissions.instruments.missions_sgp4)
sgp4.load(2018, 1)

Inspect, plot data as you wish.

Clone this wiki locally