在 /etc/apt/sources.list 中为 R 添加瑞士 cran 镜像

在 /etc/apt/sources.list 中为 R 添加瑞士 cran 镜像

尝试将瑞士的 R cran 镜像添加到 sources.list 文件时出现错误 (http://stat.ethz.ch/CRAN/),尽管我按照第页上的说明进行操作http://stat.ethz.ch/CRAN/(我正在运行 Ubuntu 13.04)我真的找不到我做错了什么......这是我的步骤:

sudo gedit /etc/apt/sources.list

然后,在 source.list 文件的最后添加了这样的一行:

#R repositories switzerland 
http://stat.ethz.ch/CRAN/bin/linux/ubuntu raring/  

然后保存退出,输入sudo apt-get update命令时出现错误:

sudo apt-get update 
E: Type 'http://stat.ethz.ch/CRAN/bin/linux/ubuntu' is not known on line 60 in
source list /etc/apt/sources.list
E: The list of sources could not be read.    

为什么?

谢谢您的回答!

答案1

呵呵找到了答案:只需在链接前添加'deb':

deb http://stat.ethz.ch/CRAN/bin/linux/ubuntu raring/    

但是,人们可以通过从终端运行直接安装

sudo apt-get install r-base     

它对我来说更容易,也更实用(R 安装后运行良好)

相关内容