Skip to content

Installation

Requirements

  • Python 3.11 or later (uses tomllib from the standard library)

From PyPI

pip install flow-state-calculator

From Source

Clone the repository and install in editable mode:

1
2
3
git clone https://github.com/uahypersonics/flow-state.git
cd flow-state
pip install -e .

Development Installation

For development, install with the dev extras:

pip install -e ".[dev]"

This includes:

Verify Installation

import flow_state
print(flow_state.__version__)

Or from the command line:

flow-state --version