无法更新/安装较新的所需 R

无法更新/安装较新的所需 R

所有其他答案我发现最终只指向说明:http://cran.r-project.org/bin/linux/ubuntu/

所以口译该网站添加了一行:

deb http://r.meteo.uni.wroc.pl/bin/linux/ubuntu oneiric universe

/etc/apt/sources.list然后就跑了apt-get update

(从实验来看,我必须在末尾添加“universe”或“main”,以避免在存储库列表中出现解析错误,从而阻止 apt 或 synaptic 更新)。

但问题仍然存在:

W: Failed to fetch http://r.meteo.uni.wroc.pl/bin/linux/ubuntu/dists/oneiric/main/binary-i386/Packa‌​ges 404 Not Found 

我在浏览器中输入该 URL,清楚地看到该路径不存在。但是这是:http://r.meteo.uni.wroc.pl/bin/linux/ubuntu/oneiric/(Packages 文件实际上位于其下,等等)

尝试了其他镜像,同样的问题。

lsb_release -a

Ubuntu 11.10

可用的 R 版本最初阻止我安装更新的软件包,例如:

> install.packages("PerformanceAnalytics")
Installing package(s) into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
Warning message:
In getDependencies(pkgs, dependencies, available, lib) :
  package ‘PerformanceAnalytics’ is not available (for R version 2.13.1)

我哪里错了?

答案1

将 /etc/apt/sources.list 中的行更改为

   deb http://r.meteo.uni.wroc.pl/bin/linux/ubuntu oneiric/

然后重试

 apt-get update

相关内容