You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Install dependencies (--extra dev includes pytest for testing)
367
+
uv sync --python 3.12 --extra dev
368
368
```
369
369
370
370
**Windows users**: If you encounter issues with the `uv` command not being found, use the Python Launcher instead:
@@ -373,11 +373,11 @@ uv sync --python 3.12
373
373
# Create virtual environment
374
374
py -3.12 -m uv venv .venv
375
375
376
-
# Install dependencies
377
-
py -3.12 -m uv sync
376
+
# Install dependencies (--extra dev includes pytest for testing)
377
+
py -3.12 -m uv sync --extra dev
378
378
```
379
379
380
-
> **⚠️ Important**: Always run `uv sync` (or `py -3.12 -m uv sync` on Windows) after creating the virtual environment to install all required dependencies. Missing dependencies will cause runtime errors like `ModuleNotFoundError: No module named 'pydantic'` or DNS resolution failures.
380
+
> **⚠️ Important**: Always run `uv sync --extra dev` (or `py -3.12 -m uv sync --extra dev` on Windows) after creating the virtual environment to install all required dependencies. Missing dependencies will cause runtime errors like `ModuleNotFoundError: No module named 'pydantic'` or DNS resolution failures.
0 commit comments