He intentado sin éxito instalar la última versión (2.15.2) de r-base . Aparentemente, R paquete Rcpp
no se instalaría para R versión 2.14.1, la versión que se instala para mí.
No estoy seguro de qué/cómo/dónde cambiar mis intentos de instalación que aparecen a continuación. Tenga en cuenta que estoy usando ubuntu-12.04.1-server-i386.
La versión actual instalada es la versión R 2.14.1 (2011-12-22):
$ sudo apt-get install r-base
Reading package lists... Done
Building dependency tree
Reading state information... Done
r-base is already the newest version.
Incluir información de la versión no ayuda:
$ sudo apt-get install r-base=2.15.1-5ubuntu1
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Version '2.15.1-5ubuntu1' for 'r-base' was not found
Cambios basados en las instrucciones de CRAN Ubuntu de http://cran.r-project.org/bin/linux/ubuntu/README:
-
Agregado a
/etc/apt/sources.list
deb http://lib.stat.cmu.edu/R/CRAN/bin/linux/ubuntu quantal/
-
Actualizar e instalar
$ sudo apt-get update $ sudo apt-get install r-base Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: r-base : Depends: r-base-core (>= 2.15.2-1quantal2) but it is not going to be installed Depends: r-recommended (= 2.15.2-1quantal2) but it is not going to be installed Recommends: r-base-html but it is not going to be installed E: Unable to correct problems, you have held broken packages.
Mejor respuesta
Ninguno de los anteriores funcionó para mí, así que estoy copiando la respuesta de https://stackoverflow.com/questions/16093331/how-to-install-r-version-3-0
Desinstalar la antigua R:
sudo apt-get remove r-base-core
Entonces:
sudo add-apt-repository "deb http://cran.rstudio.com/bin/linux/ubuntu $(lsb_release -sc)/"
Luego copie/pegue estos comandos en la línea de comando:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
sudo add-apt-repository ppa:marutter/rdev
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install r-base
Que funcionó para mí