HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

poetry-python — Manage Python versions through Poetry. See also: `asdf`. More information: <https://python-poetry.or

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandpythonversionspoetryclimanagepoetry-pythonthrough

Problem

How to use the poetry-python command: Manage Python versions through Poetry. See also: asdf. More information: <https://python-poetry.org/docs/cli/#python>.

Solution

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}}

Code Snippets

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}}

Context

tldr-pages: common/poetry-python

Revisions (0)

No revisions yet.