RT Guide: Installing R Packages
Installing Packages From CRAN
Because SDC workstations have limited internet access, you will need to install packages from a specific CRAN repo. You will need to specify this repo directly inside install.packages()
.
install.packages('MyPackage', repos='http://cran.rstudio.com')
Â