Skip to content

Installation

Requirements

  • Python 3.11 or higher
  • pip (Python package installer)

Install from PyPI

pip install aeolus-aq

Install from Source

For the latest development version:

git clone https://github.com/southlondonscientific/aeolus.git
cd aeolus
pip install -e .

Development Installation

If you want to contribute to Aeolus, install with development dependencies:

git clone https://github.com/southlondonscientific/aeolus.git
cd aeolus
pip install -e ".[dev]"

This includes pytest and other testing tools.

Verify Installation

import aeolus
print(aeolus.__version__)

Next Steps