You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this is a docs bug or an actual bug, but according to the docs things should just work with R_HOME either unset or set to "". That's not the case for me:
julia> ENV["R_HOME"]
ERROR: KeyError: key "R_HOME" not found
(r-interop) pkg> add RCall
...
Building Conda → `~/.julia/packages/Conda/kLXeC/deps/build.log`
Building RCall → `~/.julia/packages/RCall/g7dhB/deps/build.log`
┌ Error: Error building `RCall`:
│ ERROR: LoadError: R_HOME is not a directory.
...
julia> ENV["R_HOME"] = ""
""
(r-interop) pkg> build RCall
Building Conda → `~/.julia/packages/Conda/kLXeC/deps/build.log`
Building RCall → `~/.julia/packages/RCall/g7dhB/deps/build.log`
┌ Error: Error building `RCall`:
│ ERROR: LoadError: R_HOME is not a directory.
...
It finally works with the R_HOME set to "*".
I know there are a lot of install issues open, but I didn't see anything along these lines. I'm using Julia 1.2 on macOS 10.14.
The text was updated successfully, but these errors were encountered:
I'm not sure if this is a docs bug or an actual bug, but according to the docs things should just work with
R_HOME
either unset or set to""
. That's not the case for me:It finally works with the
R_HOME
set to"*"
.I know there are a lot of install issues open, but I didn't see anything along these lines. I'm using Julia 1.2 on macOS 10.14.
The text was updated successfully, but these errors were encountered: