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
- Typical flow (after `uv` is installed and you are in the project directory):
31
31
32
-
# create and install dependencies from pyproject.toml using uv
32
+
```
33
33
34
34
uv pip install -r pyproject.toml
35
35
36
36
uv run python ./main.py
37
+
```
37
38
38
39
Notes:
39
40
- The exact `uv` subcommands depend on the uv version/configuration. Check the Astral uv docs for the exact syntax for your uv CLI release. The analyzer only needs a Python executable in the venv to run `python -m pip list --format=json`; `uv` typically provides or creates that venv.
40
41
41
42
### Using plain virtualenv / pip (fallback)
42
-
- Create a virtual environment and install dependencies listed in `pyproject.toml` with your preferred tool.
43
43
44
+
- Create a virtual environment and install dependencies listed in `pyproject.toml` with your preferred tool.
0 commit comments