We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 924c2f0 commit 1656dc4Copy full SHA for 1656dc4
1 file changed
docs/development.md
@@ -105,12 +105,16 @@ locally.
105
106
The packages needed for development are specified as dependency groups
107
in ``python/pyproject.toml`` and managed with [uv](https://docs.astral.sh/uv/).
108
-Install all development dependencies by running, from the `python/` directory:
+Install all development dependencies by running:
109
110
```bash
111
+cd python
112
uv sync
113
```
114
115
+Since `uv` operates from the `python/` subdirectory,
116
+**all `uv` commands below must be run from within that subdirectory**;
117
+otherwise errors like "No such file or directory" will occur.
118
The lock file lives at `python/uv.lock` and must be kept up to date. Run
119
`uv lock` after any change to the dependencies in `python/pyproject.toml`.
120
0 commit comments