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
Can install packages with recommended Python version.
Actual Behaviour
pip install -r requirements.txt
...
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for numpy
Failed to build numpy
ERROR: Could not build wheels for numpy, which is required to install pyproject.toml-based projects
Steps to reproduce
Create a fresh python venv with python 3.11.7 and then run:
pip install -r requirements.txt
The text was updated successfully, but these errors were encountered:
Numpy and Python version mismatch
Numpy 1.23 does not support python 3.11 so when running
pip install -r requirements.txt
the process fails.Docs: https://numpy.org/devdocs/release/1.23.1-notes.htmlhttps://numpy.org/devdocs/release/1.23.1-notes.html (the 1.23.0 notes don't mention explicitly that supported version but I don't expect it to support more than the 1.23.1 version)
Expected Behaviour
Can install packages with recommended Python version.
Actual Behaviour
Steps to reproduce
Create a fresh python venv with python 3.11.7 and then run:
The text was updated successfully, but these errors were encountered: