Poetry Operations

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Installation

With brew

brew install poetry

This will install Poetry with the system Python version. To install Poetry with a specific Python version, see With Custom Installer section below.

With Custom Installer

The custom installer installs Poetry in a new virtual environment to isolate it from the rest of your system. This ensures that dependencies will not be accidentally upgraded or uninstalled, and allows Poetry to manage its own environment.

# ensure the Python version is the one you want:

python --version

# install Poetry

curl -sSL https://install.python-poetry.org | python3 -


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