Changes between Initial Version and Version 1 of Ticket #3749, comment 2


Ignore:
Timestamp:
Nov 23, 2020, 6:06:55 PM (5 years ago)
Author:
Tom Goddard

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3749, comment 2

    initial v1  
    1010https://github.com/numpy/numpy/issues/17784
    1111
    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".
     12which 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
     14Making 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