Setup virtual environment#

Create venv#

Creating virtual environment venv using uv:

uv venv

Activate venv#

Activating a Python virtual environment venv

Note: Replace .venv with your Venv folder name if you have chosen a different one.

🔹 Windows (PowerShell)

.venv\Scripts\activate.ps1

🔹 Windows (CMD)

.venv\Scripts\activate.bat

🔹 Linux / macOS (Bash/Zsh)

source .venv/bin/activate