To install an R package locally, specify the local directory where you want to install by using the “-l” option in the “R CMD INSTALL” command. For example, to install the R package in the local directory “/usr/me/localR/library”, use the “R CMD INSTALL” as follows.
R CMD INSTALL -l /usr/me/localR/library myRPackage.tar.gz
How to Load a Locally Installed R Package and Use it?
Installing R Packages at a local directory is only a first step. There are a few ways to load the locally installed R packages and use them. One option is to specify the local path to the R package while loading the library. The R command to load a general package is
library("RPackage")
To load a locally installed R package, use the library command with the parameter lib.loc aslibrary("myRPackage", lib.loc="/usr/me/local/R/library")
Another option is to instruct your .bashrc file to add the the path to local R library. This option lets you load the package without specifying the local every time. To enable this add the following to your .bashrc
if [ -n $R_LIBS ]; then
export R_LIBS=/usr/me/local/R/library:$R_LIBS
else
export R_LIBS=/usr/me/local/R/library
fi
After adding you can check if the local R package directory is in the R library path using the R command “.libPaths()“. Typing “.libPaths()” in R, will show all the R library paths. If your local R library path is not added properly, you will only see one general path to R library, like “/opt/R/2.11.1/lib64/R/library”.