We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I can use RCall only if I start julia like this:
RCall
julia
LD_LIBRARY_PATH=/usr/lib64/R/lib julia
otherwise the linker can't find libRblas.so, as it has already been discussed. I was wondering if that's still the only way. I've tried adding:
libRblas.so
ENV["LD_LIBRARY_PATH"] = "/usr/lib64/R/lib"
in startup.jl but that doesn't work.
startup.jl
The text was updated successfully, but these errors were encountered:
The environment variable has to be set before Julia is loaded.
You could patchelf libR.so (if you know what it means). Otherwise, there are no other fixes.
Sorry, something went wrong.
Got it. Thanks!
As of Julia 1.7.2 it looks like specifying LD_LIBRARY_PATH is not required anymore.
LD_LIBRARY_PATH
R
No branches or pull requests
I can use
RCall
only if I startjulia
like this:otherwise the linker can't find
libRblas.so
, as it has already been discussed.I was wondering if that's still the only way. I've tried adding:
in
startup.jl
but that doesn't work.The text was updated successfully, but these errors were encountered: