Pipenv failed to build wheels (PEP 517)
See original GitHub issueGiven the following:
$ python3 -V
Python 3.9.1
$ pipenv --version
pipenv, version 2020.11.15
$ pip --version
pip 20.3.3
Let us consider mkdir test && cd test the following minimal Pipfile
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
pandas = "*"
Running a simple pipenv install generates a mile long error message whose last bits are
...
----------------------------------------
ERROR: Failed building wheel for numpy
Failed to build numpy
ERROR: Could not build wheels for numpy which use PEP 517 and cannot be installed directly
...
...
pipenv.patched.notpip._internal.exceptions.InstallationError: Command errored out with exit status 1: /~/.local/share/virtualenvs/test-mmObi3rW/bin/python /usr/local/lib/python3.9/site-packages/pipenv/patched/notpip install --ignore-installed --no-user --prefix /private/var/folders/vw/67twknb114j86_qdm17qgrk40000gn/T/pip-build-env-lje2m4uc/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- setuptools wheel 'Cython>=0.29.21,<3' 'numpy==1.15.4; python_version=='"'"'3.6'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.15.4; python_version=='"'"'3.7'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_system!='"'"'AIX'"'"'' 'numpy==1.16.0; python_version=='"'"'3.6'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy==1.16.0; python_version=='"'"'3.7'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy==1.17.3; python_version=='"'"'3.8'"'"' and platform_system=='"'"'AIX'"'"'' 'numpy; python_version>='"'"'3.9'"'"'' Check the logs for full command output.
This problem has been touched already for instance here, here and here concering pip. Apparently the suggestion is to explicitly include the flag --no-use-pep517 which however does not work in conjunction with pipenv, producing pipenv.vendor.requirementslib.exceptions.RequirementError: Failed parsing requirement from '--no-use-pep517'.
It seems there is also a general problem with the version 2020.11.15, I do not exactly understand whether related or not. If instead of pandas one installs pipenv install request (or any other package not containing particular dependencies) the installation works fine, which makes me think the problem is indeed the building of the numpy wheels.
What is the right procedure in this case to just proceed with the installation?
$ pipenv --support
Pipenv version: '2020.11.15'
Pipenv location: '/usr/local/lib/python3.9/site-packages/pipenv'
Python location: '/usr/local/opt/python@3.9/bin/python3.9'
Python installations found:
3.9.1:~/.local/share/virtualenvs/test-mmObi3rW/bin/python33.9.1:~/.local/share/virtualenvs/test-mmObi3rW/bin/python3.93.9.1:~/.local/share/virtualenvs/test-mmObi3rW/bin/python33.9.1:~/.local/share/virtualenvs/test-mmObi3rW/bin/python3.93.9.1:/usr/local/bin/python33.9.1:/usr/local/bin/python3.93.8.2:/usr/bin/python32.7.16:/usr/bin/python22.7.16:/usr/bin/python2.7
PEP 508 Information:
{'implementation_name': 'cpython',
'implementation_version': '3.9.1',
'os_name': 'posix',
'platform_machine': 'x86_64',
'platform_python_implementation': 'CPython',
'platform_release': '20.2.0',
'platform_system': 'Darwin',
'platform_version': 'Darwin Kernel Version 20.2.0: Wed Dec 2 20:39:59 PST '
'2020; root:xnu-7195.60.75~1/RELEASE_X86_64',
'python_full_version': '3.9.1',
'python_version': '3.9',
'sys_platform': 'darwin'}
System environment variables:
TERM_SESSION_IDSSH_AUTH_SOCKLC_TERMINAL_VERSIONCOLORFGBGITERM_PROFILEXPC_FLAGSPWDSHELL__CFBundleIdentifierLC_CTYPETERM_PROGRAM_VERSIONTERM_PROGRAMPATHLC_TERMINALCOLORTERMCOMMAND_MODETERMHOMETMPDIRUSERXPC_SERVICE_NAMELOGNAMEITERM_SESSION_ID__CF_USER_TEXT_ENCODINGSHLVLOLDPWDP9K_TTYZSHPAGERLESSLSCOLORSP9K_SSHEDITORLANGMANPAGERFZF_DEFAULT_OPTSFZF_DEFAULT_COMMANDPIP_DISABLE_PIP_VERSION_CHECKPYTHONDONTWRITEBYTECODEPIP_PYTHON_PATHPIPENV_ACTIVEVIRTUAL_ENVPS1_PIP_SHIMS_BASE_MODULEPYTHONFINDER_IGNORE_UNSUPPORTED
Pipenv–specific environment variables:
PIPENV_ACTIVE:1
Debug–specific environment variables:
PATH:~/.local/share/virtualenvs/test-mmObi3rW/bin:~/.cargo/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/usr/local/MacGPG2/bin:/usr/local/opt/fzf/binSHELL:/bin/zshEDITOR:vimLANG:en_US.UTF-8PWD:~/testVIRTUAL_ENV:~/.local/share/virtualenvs/test-mmObi3rW
Contents of Pipfile (‘~/test/Pipfile’):
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
pandas = "*"
Issue Analytics
- State:
- Created 3 years ago
- Reactions:20
- Comments:47 (7 by maintainers)

Top Related StackOverflow Question
doing so produces the same error stated above, whose complete stacktrace is
Looking around some more on the internet I managed to make it work by means of the mysterious and obscure command
export SYSTEM_VERSION_COMPAT=1, found somehow accidentally here.What then exactly is the solution to the problem? More generally, is
pipenvkeeping up withpipand python updates and versionings? If so, there must be a way to install packages without having to perform workarounds as above, must it not?(Slightly OT please forgive the noise. For those finding this thread looking for numpy/scipy solutions)
As of 4th August 2021 with a M1 Macbook Pro with Big Sur v11.4 (20F71) Python 3.9.6 (Homebrew):
Numpy just works (installs numpy v1.21.1):
Scipy works with a combination of build flags and and libraries from homebrew (installs scipy v1.7.0):