

opt/homebrew/Cellar/cmake/3.26.1/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:600 (_FPHSA_FAILURE_MESSAGE)Ĭmake_modules/FindArrowPython.cmake:76 (find_package_handle_standard_args)

Could NOT find ArrowPython (missing: ArrowPython_DIR)ĬMake Error at /opt/homebrew/Cellar/cmake/3.26.1/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:230 (message):Ĭould NOT find ArrowPython (missing: ARROW_PYTHON_INCLUDE_DIRĪRROW_PYTHON_LIB_DIR) (found version "11.0.0") Found the Arrow core static library: /opt/homebrew/lib/libarrow.a Found the Arrow core import library: ARROW_IMPORT_LIB-NOTFOUND Found the Arrow core shared library: /opt/homebrew/lib/libarrow.1100.0.0.dylib Arrow version: 11.0.0 (CMake package configuration: Arrow) Found Arrow: /opt/homebrew/include (found version "11.0.0")

Found the Arrow static library: /opt/homebrew/lib/libarrow.a Found the Arrow import library: ARROW_IMPORT_LIB-NOTFOUND Found the Arrow shared library: /opt/homebrew/lib/libarrow.1100.0.0.dylib

The last bit of the error log is: - Arrow version: 11.0.0 I'm trying to use "pip3 install autofaiss" but it fails because it can't find ARROW_PYTHON_INSTALL_DIR when trying to build the wheel for it using cmake. (For completeness: I briefly tried installing a few things with conda, too, but stopped doing that - who knows what files get left over by that?) There are likely many other requirements, too, which have previously been installed with pip3 or brew. I'm using "brew install apache-arrow" to install Arrow. I'm using "brew install python" to install Python. I think the main problem I'm running into is that I don't know how to debug pip3 / brew / cmake errors on MacOS - where are the respective files/libraries supposed to live, and how do I find that out? My end goal: Install autofaiss such that it can be imported as a library in python3.11 on MacOS X Ventura.
