如何在Ubuntu 16.04安装R
发布网友
发布时间:2022-04-23 10:39
我来回答
共1个回答
热心网友
时间:2023-10-11 15:26
R更新速度较快,最新的稳定版本并不总是在Ubuntu的软件库,所以我们将开始通过添加由CRAN维护的外部软件库:我们使用下面的key,可以确保来源是从CRAN在其自己网络服务器,确保来源的安全性。
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
输出如下:
E298A3A825C0D65DFD57CBB651716619E084DAB9
gpg: requesting key E084DAB9 from hkp server keyserver.ubuntu.com
gpg: key E084DAB9: public key "Michael Rutter <marutter@gmail.com>" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
添加软件库来源:
sudo apt-get update
输出结果:
. . .
Get:6 https://cran.rstudio.com/bin/linux/ubuntu xenial/ InRelease [3,590 B]
Get:7 https://cran.rstudio.com/bin/linux/ubuntu xenial/ Packages [31.5 kB]
. . .
如果上面的行出现在update命令的输出中,我们已经成功添加了软件库。 这样的话就可以确保我们安装最新的版本。
现在我们开始准备安装R。
sudo apt-get install r-base
如果报错可以使用下面语句重新安装即可解决问题。
sudo apt install r-base-core
在写这篇文章的时候,CRAN的最新稳定版本是在3.3.2,这是打开使用R时,这些信息都会显示出来的.由于我们计划该系统的所有用户都可以使用R,我们将以root用户启动R,以便自动供所有用户使用。
启动 R。
sudo -i R
输出结果:
R version 3.3.2 (2016-10-31) -- "Sincere Pumpkin Patch"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_-pc-linux-gnu (-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
Natural language support but running in an English locale
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
这就代表我们已经成功装好R。