Installation#
Install demregpy from PyPI with pip.
Basic Install#
For the core package:
pip install demregpy
This installs demregpy along with the core dependencies.
After installation, demregpy.dn2dem() is the main entry point for converting data numbers to differential emission measures.
Install with AIA Support#
If you want to use the bundled AIA response loader and the AIA examples, install the aia extra:
pip install "demregpy[aia]"
This adds the optional dependencies used for reading AIA response files and SunPy maps.
Install from a Local Checkout#
If you are working from a local clone:
pip install -e .
For a local editable install with the AIA-related dependencies:
pip install -e ".[aia]"
Check the Install#
You can check that the package imports with:
python -c "from demregpy import dn2dem; print(dn2dem.__name__)"
Next Steps#
dn2dem Tutorial for a worked tutorial
Example Gallery for runnable examples
demregpy (demregpy) for the full API reference