咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

Centos6下安装R语言教程

2017-02-15 07:07:45 9794次

Centos6下安装R语言教程


这篇文章主要介绍了Centos6下安装R语言教程,着重讲解了Centos下的安装,本文同时给出了Windows下的安装提示,需要的朋友可以参考下


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

官方网站:

http://www.landui.com/

Windows下面有直接的安装包,直接下载安装很方便,但是对于CentOS6.0上不能直接通过yum安装R,需要自己编译。

下载页面:

http://www.landui.com/mirrors/CRAN/

在编译R之前,需要通过yum安装以下几个程序:


代码如下:


#yum install gcc-gfortran #否则报”configure: error: No F77 compiler found”错误

#yum install gcc gcc-c++ #否则报”configure: error: C++ preprocessor “/lib/cpp” fails sanity check”错误

#yum install readline-devel #否则报”–with-readline=yes (default) and headers/libs are not available”错误

#yum install libXt-devel #否则报”configure: error: –with-x=yes (default) and X11 headers/libs are not available”错误


然后下载源代码,编译


代码如下:


#cd

#wget <a href="http://www.landui.com/mirrors/CRAN/src/base/R-2/R-2.13.1.tar.gz">http://www.landui.com/mirrors/CRAN/src/base/R-2/R-2.13.1.tar.gz</a>

#tar zxvf R-2.13.1.tar.gz

#cd R-2.13.1

#./configure

#make

#make install


即可完成编译安装。

首页
最新活动
个人中心