Skip to content

Install stet

Standard install

$ uv add stet
$ python -m pip install stet

With Parquet support

$ uv add stet[parquet]
$ python -m pip install stet[parquet]

Parquet support requires pyarrow and enables the .parquet backend. See Choose a Backend for when this is useful.

Install from GitHub

To install the latest development version directly from GitHub:

$ uv add git+https://github.com/drvinceknight/stet.git
$ python -m pip install git+https://github.com/drvinceknight/stet.git

To install a specific branch or tag:

$ uv add git+https://github.com/drvinceknight/stet.git@main
$ python -m pip install git+https://github.com/drvinceknight/stet.git@main

To install a specific released version:

$ uv add git+https://github.com/drvinceknight/[email protected]
$ python -m pip install git+https://github.com/drvinceknight/[email protected]