我正在尝试r-base
在刚安装的 Ubuntu 14.04 系统中进行安装。
但是,我收到以下错误(这里仅显示最后几行输出):
0 upgraded, 70 newly installed, 0 to remove and 5 not upgraded.
Need to get 457 kB/71.9 MB of archives.
After this operation, 156 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Err http://in.archive.ubuntu.com/ubuntu/ trusty/universe r-cran-cluster amd64 1.14.4-1
403 Forbidden [IP: 91.189.88.149 80]
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/pool/universe/c/cluster/r-cran-cluster_1.14.4-1_amd64.deb 403 Forbidden [IP: 91.189.88.149 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
我尝试了和apt-get update
。在修复丢失的文件之前,我曾经在 的末尾收到一条警告,提示缺少某些密钥。但是,使用它解决了该错误。但安装时仍然出现错误。apt-get upgrade
apt-get update --fix-missing
apt-get update
--fix-missing
r-base
通过软件中心,我得到了同样的错误,标题为:无法下载包文件,请检查您的互联网连接。错误如下。
Error: Failed to fetch http://in.archive.ubuntu.com/ubuntu/pool/universe/c/cluster/r-cran-cluster_1.14.4-1_amd64.deb 403 Forbidden [IP: 91.189.91.26 80]
我的网络连接正常。当我尝试在浏览器中打开上述链接时,系统显示“拒绝访问”。
我如何才能获得访问权限?或者我可以从哪里找到相同的文件?我是 Ubuntu 新手。我发现了一些其他 403 禁止错误问题,但没有一个能帮助我,而且它们针对的是不同的特定情况(不像我的)。
更新
试此链接文件deb
使用dpkg
给出的输出如下
darshil@darshil-Lenovo-G580:~/Downloads$ sudo dpkg -i r-cran-cluster_2.0.4-1trusty0_amd64.deb
Selecting previously unselected package r-cran-cluster.
(Reading database ... 185096 files and directories currently installed.)
Preparing to unpack r-cran-cluster_2.0.4-1trusty0_amd64.deb ...
Unpacking r-cran-cluster (2.0.4-1trusty0) ...
dpkg: dependency problems prevent configuration of r-cran-cluster:
r-cran-cluster depends on r-base-core (>= 3.2.5-1trusty0); however:
Package r-base-core is not installed.
r-cran-cluster depends on r-api-3; however:
Package r-api-3 is not installed.
dpkg: error processing package r-cran-cluster (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
r-cran-cluster
答案1
尝试从 CRAN 安装 r。添加
deb http://cran.rstudio.com/bin/linux/ubuntu trusty/
然后/etc/apt/sources.list
将密钥添加到存档中
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
那么一切都应该没问题
sudo apt-get update
sudo apt-get install r-base r-recommended rstudio
sources.list
PS升级到新版本的 Ubuntu 后,不要忘记更新存储库。可用版本列表和一些安装说明。
答案2
我最终发现这是我的服务提供商的问题。出于某种原因,我所在学院的网络阻止了这个文件。所以我r-base
从另一个网络(另一个地方)的终端安装,它运行完美!