Add a "storage" reference document (#15954)

Co-authored-by: Zanie Blue <contact@zanie.dev>
This commit is contained in:
Zsolt Dollenstein
2025-11-17 14:38:14 +00:00
committed by GitHub
parent 2d75aca8e3
commit 6f525f9462
8 changed files with 245 additions and 58 deletions
+7 -2
View File
@@ -121,10 +121,15 @@ present, uv will install all the Python versions listed in the file.
The available Python versions are frozen for each uv release. To install new Python versions,
you may need upgrade uv.
See the [storage documentation](../reference/storage.md#python-versions) for details about where
installed Python versions are stored.
### Installing Python executables
uv installs Python executables into your `PATH` by default, e.g., `uv python install 3.12` will
install a Python executable into `~/.local/bin`, e.g., as `python3.12`.
uv installs Python executables into your `PATH` by default, e.g., on Unix `uv python install 3.12`
will install a Python executable into `~/.local/bin`, e.g., as `python3.12`. See the
[storage documentation](../reference/storage.md#python-executables) for more details about the
target directory.
!!! tip