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