-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[R] arrow R package 17.0.0.1 installs without GCS enabled on MacOS #44859
Comments
Hi @cklunch, sorry for the trouble. This is a bit of a pain point with the package. Can you please try this and let us know if it works? From an R console: Sys.setenv("NOT_CRAN" = "true")
install.packages("arrow", type = "source") If that runs successfully, you should see GCS enabled once you load arrow and run |
@amoeba Thanks for the quick response! I'm getting more informative errors this way, here's the start of the install output:
Consistent with that message,
OpenSSL 1.1.1 is on my machine, so it looks like the arrow install can't find it. |
Thanks. Can you please try install OpenSSL@3 with brew install openssl@3 And then running a similar command to above (with one tweak): Sys.setenv("ARROW_R_DEV"=TRUE, "NOT_CRAN" = "true")
install.packages("arrow", type = "source") |
Describe the bug, including details regarding any error messages, version, and platform.
Installing the current version of arrow from CRAN on Mac is successful, but with
arrow_with_gcs() == FALSE
. I've tried the options on https://arrow.apache.org/docs/r/articles/install.html for custom installs, but haven't been able to get GCS capability enabled. If I downgrade to arrow 15.0.1, GCS connections are working fine.I see the same behavior on Sonoma 14.7 with Intel, R version 4.4.0, and on Sequoia 15.1.1 with Apple M2, R version 4.4.2.
Looking at PR #42210 it looks like this may have been a development choice. If so, is there a simple way to install with GCS, or to enable GCS after installation?
Component(s)
R
The text was updated successfully, but these errors were encountered: