Change the lib path again.

This commit is contained in:
Andrea Dell'Amico 2023-03-20 13:50:57 +01:00
parent 2900a13d56
commit b586e731d3
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 2 additions and 4 deletions

View File

@ -24,11 +24,9 @@ print(paste("If you need some packages permanently installed in Rstudio,"))
print(paste("please contact your VRE manager."))
print(paste("R packages may also be installed directly by using the R console."))
print(paste("Those packages can be made permanent installing them into your home directory."))
print(paste("You have to create a directory, eg '~/R_libs/4.1'"))
print(paste("You have to create a directory, eg '~/R/x86_64-pc-linux-gnu-library/4.1'"))
print(paste("and then install the packages in the following way:"))
print(paste("install.packages('pkg_name', lib='~/R_libs/4.1')"))
print(paste("Then load it using"))
print(paste("library('pkg_name', lib='~/R_libs/4.1')"))
print(paste("install.packages('pkg_name', lib='~/R/x86_64-pc-linux-gnu-library/4.1')"))
print(paste("Please keep in mind that those packages are only compatible"))
print(paste("with the R version they are build against."))
print(paste("***********************************************"))