在 CentOS 上安装 R

R 软件包没有被包含在 CentOS 8 的核心软件源中。我们需要从 EPEL 软件源中安装 R。

想要在 CentOS 8 上安装 R,按照下面的步骤执行:

01.启用 EPEL 和 PowerTools 软件源

sudo dnf install epel-release
sudo dnf config-manager --set-enabled PowerTools

02.安装 R,输入:

sudo yum install R

R 是一个元软件包,包含所有必备的 R 组件。

03.验证安装过程,打印 R 版本:

R --version

此时,R 最稳定的版本是 3.6.2:

R version 3.6.2 (2019-12-12) -- "Dark and Stormy Night"
Copyright (C) 2019 The R Foundation for Statistical Computing
Platform: x86_64-redhat-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/.

04.安装 R 软件包可能会用到的库和工具:

sudo yum install make gcc gcc-c++ libcurl-devel libxml2-devel openssl-devel texlive-*

就这样!你已经在你的CentOS 系统上成功的安装了 R,并且你可以开始使用它了。
sudo -i R #running R. so as to install some packages!