Problem
When you try to install an R package on Linux you get the following error message:
"Warning: unable to access index for repository -Â http://www.revolutionanalytics.com./repositories/cran/2.15/stable/s..."
Solution
A workaround for this issue is to edit the file:Â /usr/lib64/Revo-6.2/R-2.15.3/lib64/R/etc/Rprofile.siteand change the line: r <- c(REVO=Revobase::getRevoRepos())in this block of code:if (.Platform$OS.type == "windows"){Â r["CRAN"] <- Revobase::getRevoRepos(CRANmirror=TRUE)Â } else {Â r <- c(REVO=Revobase::getRevoRepos())Â }to:r <- c(REVO="http://packages.revolutionanalytics.com/cran/2.15/stable")You will then need to restart Revolution R Enterprise for the changes to take effect.