4

标题几乎说明了这一点。我已经安装了 epel,当我尝试 yum 新版本时,我得到了 3.6.0 版本。

我知道可以从源代码编译它,但 CRAN 似乎想让我远离它(我很乐意接受)。

4

3 回答 3

4

RStudio 文档有关于如何在 CentOS 7 和 8 上安装几乎所有 R 版本(包括 4.XX)的详细教程:https ://docs.rstudio.com/resources/install-r/#optional-install-recommended-包

如果链接被删除,我在这里详细说明 CentOS 7 的步骤:

# Enable the Extra Packages for Enterprise Linux (EPEL) repository
sudo yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 

# On RHEL 7, enable the Optional repository
sudo subscription-manager repos --enable "rhel-*-optional-rpms"

# If running RHEL 7 in a public cloud, such as Amazon EC2, enable the
# Optional repository from Red Hat Update Infrastructure (RHUI) instead
sudo yum install yum-utils
sudo yum-config-manager --enable "rhel-*-optional-rpms"

# Download and install R
export R_VERSION=4.0.0
curl -O https://cdn.rstudio.com/r/centos-7/pkgs/R-${R_VERSION}-1-1.x86_64.rpm
sudo yum install R-${R_VERSION}-1-1.x86_64.rpm

# Verify installation
/opt/R/${R_VERSION}/bin/R --version

# Create symlink to R
sudo ln -s /opt/R/${R_VERSION}/bin/R /usr/local/bin/R
sudo ln -s /opt/R/${R_VERSION}/bin/Rscript /usr/local/bin/Rscript
于 2021-05-01T00:28:26.230 回答
1

默认通道不存储最新版本的 R。幸运的是,您可以通过 conda-forge 通道获取最新版本的 R。因此,您应该先添加此频道。

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
conda config --set show_channel_urls yes
conda search R
conda install R
于 2020-12-07T10:48:50.217 回答
-1

我能够使用此页面上的脚本获得 R 版本 4.0.2:

https://www.osradar.com/how-to-install-r-and-rstudio-on-centos-8/

唯一的问题是修复路径的说明对我不起作用,所以我只是在 RStudio Server 中更改了它。

于 2020-07-08T18:15:11.593 回答