Changes between Initial Version and Version 1 of Ticket #3749, comment 2
- Timestamp:
- Nov 23, 2020, 6:06:55 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3749, comment 2
initial v1 10 10 https://github.com/numpy/numpy/issues/17784 11 11 12 which says the problem is that the binary wheel numpy-1.19.4-cp38-cp38-macosx_10_9_x86_64.whl is not recognized as compatible (although it is) and therefore it tries to compile numpy from source and that fails. A work around is to take that binary wheel and rename it to numpy-1.19.4-cp38-cp38-macosx_11_0_x86_64.whl and use "pip install numpy-1.19.4-cp38-cp38-macosx_11_0_x86_64.whl". 12 which says the problem is that the binary wheel numpy-1.19.4-cp38-cp38-macosx_10_9_x86_64.whl is not recognized as compatible (although it is) and therefore it tries to compile numpy from source and that fails. A work around is to take that binary wheel and rename it to numpy-1.19.4-cp38-cp38-macosx_11_0_x86_64.whl and use "pip install numpy-1.19.4-cp38-cp38-macosx_11_0_x86_64.whl". While that allows installing numpy, it seems other packages depending on numpy get the same error. 13 14 Making macOS report its version as 10_16 instead of 11_0 using "env SYSTEM_VERSION_COMPAT=1 make install" in prereqs/pip allows all the pip packages to install. 15