starsnpixel commented on issue #36135: URL: https://github.com/apache/arrow/issues/36135#issuecomment-1610143990
Okay, I've rerun everything and the following file contains the complete log of all the commands listed on [the official website](https://arrow.apache.org/docs/developers/python.html#building-on-linux-and-macos) from `git clone https://github.com/apache/arrow.git` till `make install`: [log_all.txt](https://github.com/apache/arrow/files/11886840/log_all.txt) Interestingly, for the very last command `python setup.py build_ext --inplace`, this time I receive the following error message: ``` File "setup.py", line 251 print(f"-- Skipping build. Temp build {build_temp} does " ^ SyntaxError: invalid syntax ``` Line 251 & 252 in setup.py are `print(f"-- Skipping build. Temp build {build_temp} does " f"not match cached dir {cachedir}")` Something else that I realized with a different module: My code did not recognize it after `pip install _module_` (although installation was successful) but after `pip3 install _module_` - do I need to change something about the pyarrow code as well? -- 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]
