Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added uv run python section #7457

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
17 changes: 17 additions & 0 deletions docs/guides/scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,23 @@ environments.
isolate packages required by each script. uv automatically manages virtual environments for you
and prefers a [declarative](#declaring-script-dependencies) approach to dependencies.

## Running a REPL

To start an interactive Python session where you can run commands and explore your environment, use:

```console
$ uv run python
```

```
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello World")
Hello World
```

This will open a Python session in interactive mode, where you can execute individual Python
commands and experiment with the environment.

## Running a script without dependencies

If your script has no dependencies, you can execute it with `uv run`:
Expand Down
Loading