Unable to install older versions of poetry to avoid python 3.14 dependency #6503
-
Output of
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Homebrew has strict requirements on versioned formulae, so unless 2.1.x is the LTS version we won't add it: https://docs.brew.sh/Versions brew uninstall poetry # Or you can use `brew unlink poetry` to temporarily remove brewed Poetry from $PATH
brew install pipx
pipx install poetry==2.1.4Although I am not that familiar with Python ecosystem, maybe @branchvincent could help here |
Beta Was this translation helpful? Give feedback.
Homebrew has strict requirements on versioned formulae, so unless 2.1.x is the LTS version we won't add it: https://docs.brew.sh/Versions
I'd recommend migrating to Python 3.14, but if it is not an option, you can either use
brew extractor install Poetry via Python-specific tools likepipx:brew uninstall poetry # Or you can use `brew unlink poetry` to temporarily remove brewed Poetry from $PATH brew install pipx pipx install poetry==2.1.4Although I am not that familiar with Python ecosystem, maybe @branchvincent could help here