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 uvuv 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.pyThe 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