-
Notifications
You must be signed in to change notification settings - Fork 59
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
default packages cannot be found #488
Comments
I found a possible solution in this issue #427, but it does not work for me. I tried
and the problem still exists:
Many thanks for any suggestions. |
I have the same problem on Linux Mint 21.3 (based on Ubuntu 22.04). I installed R with Rig. This is the output when loading julia> using RCall
[ Info: Precompiling RCall [6f49c342-dc21-5d91-9882-a32aef131414]
┌ Warning: RCall.jl: Message d'avis :
│ package "methods" in options("defaultPackages") was not found
│ Pendant le démarrage - Messages d'avis :
│ 1: package ‘utils’ in options("defaultPackages") was not found
│ 2: package ‘grDevices’ in options("defaultPackages") was not found
│ 3: package ‘graphics’ in options("defaultPackages") was not found
│ 4: package ‘stats’ in options("defaultPackages") was not found
│ 5: package ‘methods’ in options("defaultPackages") was not found
└ @ RCall ~/.julia/packages/RCall/dDAVd/src/io.jl:172
julia> Any ideas? |
Specifying |
@huguesmp Yes, for RCall this should be easy to fix by setting @Xiaojun928 for JuliaCall ... it's a little bit harder because there's an extra layer of indirection. I can't really say more without knowing more about your setup, but I'm going to close this issue for now. If this is still a problem and you can provide more info ( |
Hi,
I installed R-4.3.0 with the command
sudo ./configure --enable-R-shlib --with-readline=no
which makes the libR.so available for julia.Then I installed the RCall.jl successfully in julia, but the warnings below were reported when I running
using RCall
:The above packages are default packages in R, but they cannot be found. May I know if I should change the command in the configure step to make julia find the R packages?
Thanks in advance for any advice you can offer.
Best,
Xiaojun
The text was updated successfully, but these errors were encountered: