Skip to content

Installation

Requirements

Forze requires:

  • Python 3.13 or newer
  • uv or another PEP 517-compatible package manager

Install core

Install the framework core:

uv add forze
pip install forze

Verify the installation:

uv run python -c "from forze._version import __version__; print(__version__)"

Install with integrations

Most functionality is provided through optional integrations packed as sibling packages alongside the core. To install required dependencies, use the [extras] syntax.

uv add 'forze[postgres]'
uv add 'forze[redis]'
uv add 'forze[fastapi]'
uv add 'forze[fastapi,postgres,redis]'