很可能你錯過了第一步或第二步。您需要擁有正確的密鑰(在README的「安全Apt」部分中指定),並且您需要將一行添加到/etc/atp/sources.list文件中。我實際上玩弄了不同的發行版,我有以下腳本來處理基於Precise的發行版。
#!/usr/bin/env bash
## For newest versions of R
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
# I'm sure there is a better way to add this line to
# the end of /etc/apt/sources.list but this works and I'm lazy
sudo sh -c "echo 'deb http://streaming.stat.iastate.edu/CRAN/bin/linux/ubuntu precise/' >> /etc/apt/sources.list"
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install r-base r-base-dev
,應該讓你更新到R的最新版本,並從那裏,你應該沒有問題越來越GGPLOT2的最新版本。
如果你仍然在2.14那麼你沒有正確地做'咒語' - 重新閱讀並再試一次。 – Dason