For the complete documentation index, see llms.txt. This page is also available as Markdown.

Install Dependencies

Navigate to the directory where OpenAlgo is cloned and install uv, the package manager OpenAlgo uses:

cd openalgo
brew install uv    # or: pip3 install uv

uv creates the .venv virtual environment and resolves every dependency from pyproject.toml the first time you start OpenAlgo, so there is no separate install step:

uv run app.py

The first run takes a few minutes while the environment is built. Later runs start immediately.

If you prefer to install the dependencies ahead of time rather than on first launch, run:

uv sync

Last updated