Cannot install 1.2.0a2
See original GitHub issueIt seems that the build for Linux hasn’t been published. I did manage to pip install <wheel_url>
directly, but it would be great if the appropriate channel releases are published too.
-
I am on the latest Poetry version.
-
I have searched the issues of this repo and believe that this is not a duplicate.
-
If an exception occurs when executing a command, I executed it again in debug mode (
-vvv
option). -
OS version and name: Linux version 5.4.72-microsoft-standard-WSL2 (Ubuntu 20.x distro)
-
Poetry version: 1.7.0
Issue
# _ @ _ in ~ [11:29:08] C:1
$ poetry self update
You are using the latest version
# _ @ _ in ~ [11:29:11]
$ poetry self update --preview
Updating to 1.2.0a2
RuntimeError
Could not find poetry-1.2.0a2-linux.sha256sum file
at .poetry/lib/poetry/console/commands/self/update.py:260 in _update
256│ try:
257│ r = urlopen(base_url + "/{}/{}".format(version, checksum))
258│ except HTTPError as e:
259│ if e.code == 404:
→ 260│ raise RuntimeError("Could not find {} file".format(checksum))
261│
262│ raise
263│
264│ checksum = r.read().decode().strip()
Issue Analytics
- State:
- Created 2 years ago
- Reactions:10
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Announcing Poetry 1.2.0a2 | Blog
The Poetry team is pleased to announce the immediate availability of Poetry 1.2.0a2. This release mainly adds support for dependency groups. If ...
Read more >Pip index for rasa open-source installation
HI, I'm trying to install rasa open-source (v 2.8.13) using pip. It throws the below error: Looking in indexes: https://pypi.org/simple, ...
Read more >How can I fix this error installing web3 on Python
The problem isn't in web3, however, but in one of its dependencies. You can check this by installing it with --no-deps , which...
Read more >0009798: Unable to perform Mantis upgrade from 1.1.2 to 1.2 ...
0a2 that I need for getting this to work? Install with mySQL database works normally, but it seems MSSQL does not. I tried...
Read more >poetry-scaffold-plugin - PyPI
To try poetry-scaffold-plugin, you must install Poetry >=1.2.0a2. Updating from Poetry v1.1 to the preview can't be done via Poetry's self ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I was able to use
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | POETRY_PREVIEW=1 python -
to successfully install 1.2.0a2 on macOS. More details here: https://python-poetry.org/docs/master/#installationUsing
pipx install poetry==1.2.0a2
worked for me too.