Ubuntu20.04下安装 R 及 CRAN 软件包(命令行操作)
Posted Z.Q.Feng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu20.04下安装 R 及 CRAN 软件包(命令行操作)相关的知识,希望对你有一定的参考价值。
文章目录
1. 添加当前的 R4.1.0 或更高版本的 c2d4u 存储库
前言
- 系统环境:Ubuntu20.04
- R 版本:4.1.0 Release
一、R 的安装
1. 确定软件包版本
- Hirsute Hippo (21.04, amd64 only),
- Groovy Gorilla (20.10, amd64 only),
- Focal Fossa (20.04; LTS and amd64 only),
- Bionic Beaver (18.04; LTS),
- Xenial Xerus (16.04; LTS).
注意此时自己系统对应版本的软件包,后面会用到。
2. 安装CRAN中的R二进制文件
更新索引,
sudo apt update -qq
安装两个后面需要用到的包,
sudo apt install --no-install-recommends software-properties-common dirmngr
导入密匙(from Michael Rutter):
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
从CRAN添加 R4.0 repo -- adjust 'hirsute'、'focal'、'groovy'、'bionic' or 'xenial' as needed
sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu focal-cran40/"
注意这里由于我的系统版本是 Ubuntu20.04,故源最后目录为 focal-cran40/,若你的系统版本为 Ubuntu16.04 则需更改为 xenial-cran40/,其他版本看开头说明。
3. 安装 R 及其依赖项
sudo apt install --no-install-recommends r-base
这里安装的最新版本的 R,若要安装旧版本,请参考此说明:corresponding README
4. 检查安装情况
打开终端,键入 R --version,查看 R 的安装情况:
/home/zq> R --version
R version 4.1.0 (2021-05-18) -- "Camp Pontanezen"
Copyright (C) 2021 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under the terms of the
GNU General Public License versions 2 or 3.
For more information about these matters see
https://www.gnu.org/licenses/./home/zq>
可以看到我们这里已经成功安装 R 4.1.0 版本。
二、添加CRAN软件包
1. 添加当前的 R4.1.0 或更高版本的 c2d4u 存储库
sudo add-apt-repository ppa:c2d4u.team/c2d4u4.0+
2. 添加此存储库以及对应的键ID并更新索引
sudo apt install --no-install-recommends r-cran-rstan
sudo apt install --no-install-recommends r-cran-tidyverse
三、R 编辑器 Rstudio 的安装
Linux 下 Rstudio 的安装不像 Windows 那么简单,虽然也有对应的安装包,但是依赖配置有点麻烦,故放在另一篇博客里进行说明,链接如下:
Ubuntu20.04 下 rstudio 安装教程(附安装包下载)
四、附录
R 语言镜像地址:
https://link.jianshu.com/?t=https://cran.r-project.org/mirrors.html
R语言linux编译安装官方文档:
https://cran.r-project.org/doc/manuals/r-release/R-admin.html#Installation
有帮助可以点赞哦,谢谢大家的支持~
以上是关于Ubuntu20.04下安装 R 及 CRAN 软件包(命令行操作)的主要内容,如果未能解决你的问题,请参考以下文章