hteeyeoh commented on issue #39846: URL: https://github.com/apache/arrow/issues/39846#issuecomment-2295493711
> @numbworks you have a different problem, you don't have cmake installed. Building Pyarrow from source needs a matching version of Arrow C++ available as well. See docs: https://arrow.apache.org/docs/developers/python.html#building-on-linux-and-macos And please refrain from posting on multiple issues, it just creates notification spam. > > @hteeyeoh your problem is that the dir `..` does not contain the arrow root CMakeLists.txt, which happens because each run command is in it's own shell, so the `cd arrow/cpp/build` doesn not affect the next `RUN`, so moving the cd command into the cmake would work or you can use `-S /arrow/cpp -B /arrow/cpp/build` to specify both source and build dir explicitly without relying on the cwd: https://cmake.org/cmake/help/latest/manual/cmake.1.html#generate-a-project-buildsystem Thank you. Will give it a try -- 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]
