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
This is in a virtualenv created with python3 -m venv (I prefer not installing python packages globally).
Installing dependencies failed with:
Downloading pandas-1.3.3.tar.gz (4.7 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 67.1 MB/s eta 0:00:00
Installing build dependencies ... done
Getting requirements to build wheel ... error
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [21 lines of output]
Traceback (most recent call last):
File "/Users/redacted/Src/mariposa/venv3/lib/python3.11/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 351, in <module>
main()
File "/Users/redacted/Src/mariposa/venv3/lib/python3.11/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 333, in main
json_out['return_val'] = hook(**hook_input['kwargs'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/redacted/Src/mariposa/venv3/lib/python3.11/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 118, in get_requires_for_build_wheel
return hook(config_settings)
^^^^^^^^^^^^^^^^^^^^^
File "/private/var/folders/rv/r1tp_rss7sxg6dlqdqyk6tnh0000gq/T/pip-build-env-n_2fy48_/overlay/lib/python3.11/site-packages/setuptools/build_meta.py", line 341, in get_requires_for_build_wheel
return self._get_build_requires(config_settings, requirements=['wheel'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/private/var/folders/rv/r1tp_rss7sxg6dlqdqyk6tnh0000gq/T/pip-build-env-n_2fy48_/overlay/lib/python3.11/site-packages/setuptools/build_meta.py", line 323, in _get_build_requires
self.run_setup()
File "/private/var/folders/rv/r1tp_rss7sxg6dlqdqyk6tnh0000gq/T/pip-build-env-n_2fy48_/overlay/lib/python3.11/site-packages/setuptools/build_meta.py", line 488, in run_setup
self).run_setup(setup_script=setup_script)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/private/var/folders/rv/r1tp_rss7sxg6dlqdqyk6tnh0000gq/T/pip-build-env-n_2fy48_/overlay/lib/python3.11/site-packages/setuptools/build_meta.py", line 338, in run_setup
exec(code, locals())
File "<string>", line 18, in <module>
ModuleNotFoundError: No module named 'numpy'
[end of output]
I then installed numpy manually with pip3 install numpy and tried again, but pip got stuck trying many version of pandas for this INFO: pip is looking at multiple versions of pandas to determine which version is compatible with other requirements. This could take a while.
The text was updated successfully, but these errors were encountered:
utaal
changed the title
pip3 install -r requirements.txt failed for mepip3 install -r requirements.txt failed for me (in a virtualenv)
Jul 27, 2023
This is in a virtualenv created with
python3 -m venv
(I prefer not installing python packages globally).Installing dependencies failed with:
I then installed
numpy
manually withpip3 install numpy
and tried again, butpip
got stuck trying many version of pandas for thisINFO: pip is looking at multiple versions of pandas to determine which version is compatible with other requirements. This could take a while.
The text was updated successfully, but these errors were encountered: