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 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: MacOS 11.2.1
Poetry version: 1.1.4
Issue
With new venvs I've been running into issue installing the package kiwisolver at version 1.3.1. Issuing a poetry install fails with
error: invalid command 'bdist_wheel'
----------------------------------------
ERROR: Failed building wheel for cppy
ERROR: Failed to build one or more wheels
Traceback (most recent call last):
File "/Users/jon/tmp/venv/lib/python3.9/site-packages/setuptools/installer.py", line 75, in fetch_build_egg
subprocess.check_call(cmd)
File "/usr/local/Cellar/python@3.9/3.9.1_8/Frameworks/Python.framework/Versions/3.9/lib/python3.9/subprocess.py", line 373, in check_call
Installing the wheel package with pip install wheel allows for the install to work. Can functionality be added to poetry to install wheel itself if it needs to install a wheel package?
Minimal toml to reproduce
[tool.poetry]
name = "foo"
version = "1"
description = ""
authors = [""]
[tool.poetry.dependencies]
python = "^3.8"
kiwisolver = "=1.3.1"
The text was updated successfully, but these errors were encountered:
This is a dup of #3591. Installing wheels doesn't work on Big Sur. The fix has already landed on master. Now we're just waiting for the maintainers to cut a new release.
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: MacOS 11.2.1
Poetry version: 1.1.4
Issue
With new venvs I've been running into issue installing the package
kiwisolver
at version1.3.1
. Issuing apoetry install
fails withInstalling the
wheel
package withpip install wheel
allows for the install to work. Can functionality be added to poetry to installwheel
itself if it needs to install a wheel package?Minimal toml to reproduce
The text was updated successfully, but these errors were encountered: