Could not find poetry-1.2.2-linux.sha256sum file

Question:

I am trying to update my version of Poetry to 1.2.*, but when running poetry self update I get the error Could not find poetry-1.2.2-linux.sha256sum file… I can’t figure out how to try and update Poetry to an earlier version for which hopefully the checksum exists.

Asked By: Harry Stuart

||

Answers:

You are trying to update a Poetry that was installed with the get-poetry.py installer. This installer is deprecated for more than a year now. Updating via poetry self update is not possible for these installation. Uninstall Poetry and reinstall with the recommended installer.

More information are available at https://python-poetry.org/blog/announcing-poetry-1.2.0/

Answered By: finswimmer

The get-poetry.py has been even removed from repo, remove Poetry with the latest existing version :

curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/901bdf0491005f1b3db41947d0d938da6838ecb9/get-poetry.py | python3 – –uninstall

Then reinstall a fresh Poetry properly.

Answered By: ak-empiak
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.