1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 06:55:27 +02:00

uv, uv-{python,tool}: add page (#13491)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: spageektti <git@spageektti.cc>
This commit is contained in:
Pranav Mangal 2024-08-22 03:34:10 +05:30 committed by GitHub
parent bceb4b932d
commit ef2ee5eaac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 89 additions and 0 deletions

28
pages/common/uv-python.md Normal file
View file

@ -0,0 +1,28 @@
# uv python
> Manage Python versions and installations.
> More information: <https://docs.astral.sh/uv/reference/cli/#uv-python>.
- List all available Python installations:
`uv python list`
- Install a Python version:
`uv python install {{version}}`
- Uninstall a Python version:
`uv python uninstall {{version}}`
- Search for a Python installation:
`uv python find {{version}}`
- Pin the current project to use a specific Python version:
`uv python pin {{version}}`
- Show the `uv` Python installation directory:
`uv python dir`

24
pages/common/uv-tool.md Normal file
View file

@ -0,0 +1,24 @@
# uv tool
> Install and run commands provided by Python packages.
> More information: <https://docs.astral.sh/uv/reference/cli/#uv-tool>.
- Run a command from a package, without installing it:
`uv tool run {{command}}`
- Install a Python package system-wide:
`uv tool install {{package}}`
- Upgrade an installed Python package:
`uv tool upgrade {{package}}`
- Uninstall a Python package:
`uv tool uninstall {{package}}`
- List Python packages installed system-wide:
`uv tool list`

37
pages/common/uv.md Normal file
View file

@ -0,0 +1,37 @@
# uv
> A fast Python package and project manager.
> Some subcommands such as `uv tool` and `uv python` have their own usage documentation.
> More information: <https://docs.astral.sh/uv/reference/cli>.
- Create a new Python project in the current directory:
`uv init`
- Create a new Python project in a directory with the given name:
`uv init {{project_name}}`
- Add a new package to the project:
`uv add {{package}}`
- Remove a package from the project:
`uv remove {{package}}`
- Run a script in the project's environment:
`uv run {{path/to/script.py}}`
- Run a command in the project's environment:
`uv run {{command}}`
- Update a project's environment from `pyproject.toml`:
`uv sync`
- Create a lock file for the project's dependencies:
`uv lock`