I'm trying to use a linux server with R installed. Apparently the R system library has old versions of non-base packages installed like dplyr and testthat. Because i don't have permission to edit the system library, i'm unable to update the packages.
My plan is to only use a user library, so I can controll the package versions myself. However i'm unable to remove the "/usr/lib64/R/library"
folder from .libPaths()
. I tried changing the environment variables R_LIBS_SITE
and R_LIBS
with the .Renviron
and .Rprofile
files to a different folder, but the /usr/lib64/R/library
folder will always be present. Removing it with the command .libPaths(.libPaths()[1:2])
doesn't work either.
Is there a way to remove the system library from .libPaths()
, so I'm not depending on the update policy of the server admin?