raulcd commented on issue #36292: URL: https://github.com/apache/arrow/issues/36292#issuecomment-1607457815
Hi @haddad-github , We don't provide wheels for Raspberry Pi. This is the documentation to build PyArrow for development, which can help you build for Raspberry Pi: https://arrow.apache.org/docs/dev/developers/python.html#using-system-and-bundled-dependencies You will need Arrow CPP which is required to build PyArrow. Someone had some issues to compile PyArrow for Raspberry Pi in the past and opened this issue which allowed them to build (hopefully this past issue can be helpful): https://github.com/apache/arrow/issues/33814 From what seems from your logs you have to install CMake (from https://arrow.apache.org/docs/dev/developers/python.html#using-system-and-bundled-dependencies): ``` sudo apt-get install build-essential cmake python3-dev ``` -- 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]
