amoeba commented on issue #40073: URL: https://github.com/apache/arrow/issues/40073#issuecomment-1975426266
Hey @aquasync, I did a little bit more research on this today and have a few notes: I found [this older Jira ticket](https://issues.apache.org/jira/browse/ARROW-8281) that seemed related. That led me to try installing R arrow from conda instead of CRAN and I was able to get things to work: ```sh $ conda create -n reticulate-test -c conda-forge python==3.12 r-reticulate r-arrow pyarrow $ conda activate reticulate-test $ R > library(arrow) > library(reticulate) > import("pyarrow") Module(pyarrow) ``` So that's possibly a workaround in case you need one right now. As for next steps, it seems like we can modify either the Python build or the R build here and my preference would be to modify the R build as it would be relatively low impact and we know it already works because of our conda package. And we'd only have to modify it for Windows. @assignUser do you have any immediate reaction or insights into this idea? Before I figured the above out, I filed [an issue over on the reticulate repo](https://github.com/rstudio/reticulate/issues/1541) to see if they have any ideas so I'll be curious to see if they have any thoughts. -- 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]
