Skip to content

Install Python venv

Dave Lawrence edited this page Jun 4, 2026 · 3 revisions

We recommend Python 3.11+ for the performance improvements

Python 3.12 is already installed on Ubuntu 24

Install uv

sudo snap install astral-uv --classic

Create venv:

cd /opt/variantgrid  # Or wherever your install is
uv venv

Activate venv and install requirements:

source .venv/bin/activate
uv pip install -r requirements.txt

Clone this wiki locally