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
2. Install all the dependencies from your project, which are typically specified in a `uv.lock` file.
73
73
74
74
```
75
-
poetry install
75
+
uv sync --all-extras --dev
76
76
```
77
77
78
-
3. Run any python scripts or CLI commands by prefixing with `poetry run`.
78
+
3. Run any python scripts or CLI commands by prefixing with `uv run`.
79
79
80
80
```
81
-
poetry run python your_script.py # ex of how to run standalone python script
82
-
poetry run pytest # ex of how to invoke CLI tools
81
+
uv run python your_script.py # ex of how to run standalone python script
82
+
uv run pytest # ex of how to invoke CLI tools
83
83
```
84
84
85
-
4. Refer to the poetry docs for details on how to use the [add](https://python-poetry.org/docs/cli/#add), [update](https://python-poetry.org/docs/cli/#update) and [remove](https://python-poetry.org/docs/cli/#remove) commands.
86
-
85
+
4. Refer to the uv docs for details on how to use the [add](https://docs.astral.sh/uv/concepts/dependencies/), [update](https://docs.astral.sh/uv/concepts/dependencies/#updating-dependencies) and
0 commit comments