Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/concepts/projects/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ environment:
$ uv run python -c "import example"
```

!!! tip When invoked without any arguments, `uv run python` will start an interactive Python REPL in
the project environment:

```console
$ uv run python
```

When using `run`, uv will ensure that the project environment is up-to-date before running the given
command.

Expand Down
Loading