Add info on env activation with git-bash under Windows

This commit is contained in:
Dominik Jain
2025-05-30 18:50:23 +02:00
parent 638a0517ce
commit d9388ac4bd
+1 -1
View File
@@ -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