sdy72 commented on issue #14920: URL: https://github.com/apache/arrow/issues/14920#issuecomment-1359632892
New finding. I removed the try: ... except: pass in https://gitlab.kitware.com/cmake/cmake/-/blob/v3.25.1/Modules/FindPython/Support.cmake#L3172 and got this error: ``` from numpy.core._multiarray_umath import ( ImportError: libcblas.so.3: cannot open shared object file: No such file or directory ``` I then followed the recommendation in https://numpy.org/devdocs/user/troubleshooting-importerror.html and installed `sudo apt-get install libatlas-base-dev` Then find_package(Python3... ran with the success. ` _Python3_NumPy_PATH = /tmp/pip-build-env-rlrroqfr/overlay/lib/python3.9/site-packages/numpy/core/include` Now I get the following error instead. Attached output. [pyarrow_install_make_error.txt](https://github.com/apache/arrow/files/10270070/pyarrow_install_make_error.txt) --- Btw, I also installed arrow from source apache-arrow-10.0.1/cpp cmake -> make -> sudo make install Prior to all this, otherwise I got this error ``` CMake Error at CMakeLists.txt:63 (find_package): By not providing "FindArrow.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "Arrow", but CMake did not find one. ``` Is this intended? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
