在 Ubuntu 14.10 上安装 r-base 时收到 "Unmet dependency"

Receiving "Unmet dependency" while installing r-base on Ubuntu 14.10

我正在尝试在 Ubuntu 14.10

上安装 R

当我发出下载 r-base 的命令时,出现以下错误

roy@laptop:~$ 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 (>= 3.1.2-1precise0) but it is not going to be installed
          Depends: r-recommended (= 3.1.2-1precise0) 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.

我能做什么?我发现添加 raring 的反向移植可能会有所帮助。我尝试了几台服务器,但收到 404。

以下是我在 /etc/apt/sources.list

中所做的更改
## R
deb http://cran.cnr.Berkeley.edu/bin/linux/ubuntu precise/



## Raring backports
deb http://us.archive.ubuntu.com/ubuntu/ raring-backports main restricted universe multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ raring-backports main restricted universe multiverse

第 1 步:

您可以在 /etc/apt/sources.list 文件中使用以下任何一项来获取 R 的最新副本,将 <my.favorite.cran.mirror> 替换为您最喜欢的 CRAN 镜像的实际 URL。有关 CRAN 镜像列表,请参阅 http://cran.r-project.org/mirrors.html

deb http://<my.favorite.cran.mirror>/bin/linux/ubuntu utopic/
or
deb http://<my.favorite.cran.mirror>/bin/linux/ubuntu trusty/
or
deb http://<my.favorite.cran.mirror>/bin/linux/ubuntu precise/
or
deb http://<my.favorite.cran.mirror>/bin/linux/ubuntu lucid/

第 2 步:

要安装完整的 R 系统,请在命令行中使用以下命令:

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
sudo add-apt-repository ppa:marutter/rdev
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install r-base

有关详细说明,请按照 link here!

中给出的步骤进行操作