You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had an issue installing on both Rocky Linux 8.7 and Ubuntu 20.04 LTS. Where the Official installer was failing to select a version that was available in the repo, and was just blindly trying to install v1.5.1. The solution was to specify a newer version of pythoon
Official instructions state the command to install is curl -sSL https://install.python-poetry.org | python3 -
But this was resulting in Python 3.6 being used, which apparently is no longer supported. I had 3.9 installed on the systems.
The installer should really run a check to see if the python version it is using is too old and not supported and give an appropriate error. Alternatively, it could select the most up to date version that is available on that repo. Either way, it shouldn't fail with this error.
curl -sSL https://install.python-poetry.org | python3.9 - worked, but I wasted a fair bit of time working out why it was failing.
The text was updated successfully, but these errors were encountered:
This is bizarre. I just ran into a similar issue where the docs for building mongodb refer to installing poetry 1.5.1. Which, as far as I can see, doesn't exist, but 1.1.5 does exist. I would post an issue with them, but issues are off.
Same issue here trying to install the current poetry version (1.8.3) on red hat 8.9. Using python 3.6.8 resulted in the error ERROR: No matching distribution found for poetry==1.8.3, while using python 3.11.5 worked fine. Seems like a recurrent issue: #32
I had an issue installing on both Rocky Linux 8.7 and Ubuntu 20.04 LTS. Where the Official installer was failing to select a version that was available in the repo, and was just blindly trying to install v1.5.1. The solution was to specify a newer version of pythoon
Official instructions state the command to install is
curl -sSL https://install.python-poetry.org | python3 -
But this was resulting in Python 3.6 being used, which apparently is no longer supported. I had 3.9 installed on the systems.
The installer should really run a check to see if the python version it is using is too old and not supported and give an appropriate error. Alternatively, it could select the most up to date version that is available on that repo. Either way, it shouldn't fail with this error.
curl -sSL https://install.python-poetry.org | python3.9 -
worked, but I wasted a fair bit of time working out why it was failing.The text was updated successfully, but these errors were encountered: