Update cheatsheets

This commit is contained in:
ivuorinen
2024-08-22 00:15:40 +00:00
parent bef5f39123
commit ec4def1435
7 changed files with 160 additions and 3 deletions

29
tldr/uv-tool Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`