如何部署R语言R-Project环境?

R Project

1 R语言的简介

R语言(r-project)是主要用于统计分析、绘图的语言和操作环境。

2 配置yum源

2.1 安装说明

由于编译安装相对繁琐,故而安装使用repoforge的源解决,免去编译的麻烦。

2.2 安装rpmforge源

yum install http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el5.rf.x86_64.rpm

注意:请根据实际的系统OS版本选取合适的YUM源。

2.3 rpmforge源的下载

http://repoforge.org/use/

3 R-Project的安装

3.1 查询r-project相关包

yum search r-project

显示如下:

Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
============================== Matched: r-project ==============================
R.x86_64 : Language for data analysis and graphics
R-devel.x86_64 : Header files, libraries and development documentation for R.
libRmath.x86_64 : standalone math library from the R project
libRmath-devel.x86_64 : standalone math library from the R project

3.2 安装相关包

yum -y install R R-devel libRmath libRmath-devel

——————————————–
参阅资料:
https://www.r-project.org/
https://cran.r-project.org/src/base/R-3/
安装方法:
https://www.rstudio.com/products/shiny/download-server/

没有评论

发表回复

R Project
如何安装部署Shiny-Server?

1 基础知识 2.1 R Markdown 2.1.1 R Markdown的简介 – …

R Project
如何安装配置RStudio Server?

1 基础知识 1.1 RStudio的介绍 RStudio是R编程语言集成开发环境(IDE) 1.2 …

R Project
如何管理R的软件包?

1 前言 R语言使用“base”与“utils”软件包实现管理,本章整理两个包的常用命令,以备使用。 …