Poetry Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 6: Line 6:
brew install poetry
brew install poetry
</syntaxhighlight>
</syntaxhighlight>
This will install Poetry with the system Python version. To install Poetry with a specific Python version:
<syntaxhighlight lang='bash'>
# ensure the Python version is the one you want:
python --version
# install Poetry
brew install poetry
</syntaxhighlight>
<font color=darkkhaki>It is probably possible to achieve that with brew too, not sure how.</font>

Revision as of 01:16, 3 November 2023

Internal

Installation

brew install poetry

This will install Poetry with the system Python version. To install Poetry with a specific Python version:

# ensure the Python version is the one you want:

python --version

# install Poetry

brew install poetry


It is probably possible to achieve that with brew too, not sure how.