Update cheatsheets

This commit is contained in:
ivuorinen
2025-09-12 00:18:39 +00:00
parent 5913523ab3
commit d15d5b771b
6 changed files with 152 additions and 0 deletions

26
tldr/poetry-python Normal file
View File

@@ -0,0 +1,26 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# poetry-python
> Manage Python versions through Poetry.
> See also: `asdf`.
> More information: <https://python-poetry.org/docs/cli/#python>.
- Install the specified Python version:
`poetry python install {{3.13.1}}`
- List all Python versions managed by System or Poetry:
`poetry python list`
- List all Python versions managed by Poetry:
`poetry python list --managed`
- Remove the specified Python version (if managed by Poetry):
`poetry python remove {{3.13.1}}`