Skip to content
Prev 93 / 885 Next

installing Rcmdr

I've found the version of R in the Ubuntu repository is almost always
out of date. Here is the process I follow:

1) Add the R repository (see http://cran.r-project.org/bin/linux/ubuntu/).
2) Install R and the dev package: sudo apt-get install r-base r-base-dev
3) Install any packages needed to build a particular package. In this
case something like sudo apt-get build-dep r-cran-rcmdr (I'm not on my
ubuntu machine at the moment so I'm not sure the package name is
correct).
4) Start R from the command line as root so I can install packages
system-wide: sudo R
5) From the R command prompt, install Rcmdr: >
install.packages("Rcmdr", dep=TRUE)
6) Start Rcmdr and install additional packages when prompted.

I've never had this procedure fail to produce a working installation.

Hope it helps,
Ista
On Sat, Feb 14, 2009 at 9:24 PM, Robert W. Hayden <hayden at mv.mv.com> wrote: