Skip to content

Installation

Talea requires Python 3.14 or newer.

Install the published release from PyPI:

python -m pip install talea

To install from a source checkout instead:

git clone https://github.com/tarsil/talea.git
cd talea
python -m pip install .

For contributor environments, enter Hatch:

hatch shell

The installed runtime has no required third-party dependencies. The repository environment also installs testing, typing, benchmarking, build, and documentation tools; those are not runtime dependencies.

Verify the installation:

python -c "import talea; print(talea.__version__)"

See Contributing for the complete development workflow.