O install.packages R no Ubuntu 12.04 baixa mas não instala pacotes

Estou perplexo. Eu já fiz esse processo uma dúzia de vezes e nunca tive esse problema.

Eu instalei a versão mais recente do R para Ubuntu

Entro no R, sem problemas, fornece a versão mais recente e posso carregar pacotes nativos.

Mas quando tento instalar novos pacotes, eles são baixados, mas não recebo nada. Por exemplo, se eu instalar o ggplot2:

> install.packages("ggplot2")
Installing package into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
also installing the dependencies ‘colorspace’, ‘stringr’, ‘RColorBrewer’, ‘dichromat’, ‘munsell’, ‘labeling’, ‘plyr’, ‘digest’, ‘gtable’, ‘reshape2’, ‘scales’, ‘proto’

trying URL 'http://rweb.quant.ku.edu/cran/src/contrib/colorspace_1.2-4.tar.gz'
Content type 'application/x-gzip' length 242791 bytes (237 Kb)
opened URL
==================================================
downloaded 237 Kb

trying URL 'http://rweb.quant.ku.edu/cran/src/contrib/stringr_0.6.2.tar.gz'
Content type 'application/x-gzip' length 20636 bytes (20 Kb)
opened URL
==================================================
downloaded 20 Kb

[snip ... ]

trying URL 'http://rweb.quant.ku.edu/cran/src/contrib/ggplot2_0.9.3.1.tar.gz'
Content type 'application/x-gzip' length 2330942 bytes (2.2 Mb)
opened URL
==================================================
downloaded 2.2 Mb


The downloaded source packages are in
        ‘/tmp/RtmpoPUAFL/downloaded_packages’
> library(ggplot2)
Error in library(ggplot2) : there is no package called ‘ggplot2’

Limpei completamente os arquivos várias vezes, mas não com sorte.

Estou logado como root.

Eu sinto que estou perdendo algo óbvio? Não sei - já fiz a mesma coisa uma dúzia de vezes no Ubuntu, Mac, Windows e Debian. Socorro?

questionAnswers(3)

yourAnswerToTheQuestion