Skip to content

Installation

Requirements

Tryke requires Python 3.12 or newer. Wheels are published for Linux (x86_64), macOS (arm64), and Windows (x86_64).

Running without installation

The easiest way to get started with Tryke is with uvx:

uvx tryke test

Or with pipx:

pipx run tryke test

Installation methods

Adding Tryke to your project (uv)

Use uv to add Tryke as a dev dependency.

uv add --dev tryke

Then, use uv run to invoke Tryke:

uv run tryke

To update Tryke, use --upgrade-package:

uv lock --upgrade-package tryke

Adding Tryke to your project (pip)

Install Tryke into your active virtual environment:

pip install tryke

Invoke it directly:

tryke test

To upgrade:

pip install --upgrade tryke

Using Tryke in your editor

See the editor integration guide