Skip to content

Installation

From PyPI

pip install flow-theory

To upgrade an existing installation:

pip install --upgrade flow-theory

From Source

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

Optional Extras

For development (tests, linting, and docs):

pip install -e ".[dev]"

Includes:

Verify Installation

flow-theory --version

Or in Python:

import flow_theory
print(flow_theory.__version__)