From d9388ac4bd451e25d0a43b18e06baa5a1bb98e48 Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Fri, 30 May 2025 18:50:23 +0200 Subject: [PATCH] Add info on env activation with git-bash under Windows --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5a3d797..ced77bd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -22,7 +22,7 @@ You can install a virtual environment with the required as follows 1. Create a new virtual environment: `uv venv` 2. Activate the environment: * On Linux/Unix/macOS: `source .venv/bin/activate` - * On Windows: `.venv\Scripts\activate.bat` + * On Windows: `.venv\Scripts\activate.bat` (in cmd/ps) or `source .venv/Scripts/activate` (in git-bash) 3. Install the required packages with all extras: `uv pip install --all-extras -r pyproject.toml -e .` ### Docker setup