diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs index 49cbdc72098a..2c37b866ba83 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -4333,8 +4333,8 @@ pub struct PythonInstallArgs { /// also installed. /// /// Alternative Python variants will still include their tag. For example, installing - /// 3.13+freethreaded with `--default` will include in `python3t` and `pythont`, not `python3` - /// and `python`. + /// 3.13+freethreaded with `--default` will include `python3t` and `pythont` instead of + /// `python3` and `python`. /// /// If multiple Python versions are requested during the installation, the first request will be /// the default. diff --git a/docs/reference/cli.md b/docs/reference/cli.md index 987a18c5c979..ee9ec38d6146 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -4567,7 +4567,7 @@ uv python install [OPTIONS] [TARGETS]...
By default, only a python{major}.{minor}
executable is installed, e.g., python3.10
. When the --default
flag is used, python{major}
, e.g., python3
, and python
executables are also installed.
Alternative Python variants will still include their tag. For example, installing 3.13+freethreaded with --default
will include in python3t
and pythont
, not python3
and python
.
Alternative Python variants will still include their tag. For example, installing 3.13+freethreaded with --default
will include python3t
and pythont
instead of python3
and python
.
If multiple Python versions are requested during the installation, the first request will be the default.