加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

Centos服务器上安装R语言

(2012-01-04 21:58:21)
标签:

centos

r语言

安装

tab自动补全

杂谈

分类: Python与R
由于希望在Hadoop集群上配置RHadoop,自然需要在每个服务器节点上安装R语言。在安装过程也碰到了一些小问题,因此记录一下。
    首先服务器系统版本为centos5.6,R版本为2.13.2。下面是安装步骤:
    1、解压文件:tar –zvxf R-2.13.2.tar.gz
    2、进入R源文件目录:cd R-2.13.2
    3、执行./configure命令,提示错误信息为“configure: error: No F77 compiler found”,执行命令yum install gcc-gfortran解决。再次执行./configure,报错:configure: error: --with-readline=yes (default) and headers/libs are not available”,执行命令./configure --with-readline=no,继续报错:“configure: error: –with-x=yes (default) and X11 headers/libs are not available”。尝试执行命令./configure --with-readline=no --with-x=no通过,只是会提示警告信息:
configure: WARNING: you cannot build DVI versions of the R manuals
configure: WARNING: you cannot build DVI versions of all the help pages
configure: WARNING: you cannot build info or HTML versions of the R manuals
configure: WARNING: you cannot build PDF versions of the R manuals
configure: WARNING: you cannot build PDF versions of all the help pages
    4、make
    5、make install
    安装成功。进入R命令行界面,可以操作。但是tab自动补全以及上下左右等方向键都无法使用。想着应该是./configure --with-readline=no --with-x=no惹的祸。因此重新安装了一下,这次在执行./configure命令前先执行了命令
yum install readline-devel解决错误--with-readline=yes (default) and headers/libs are not available
yum install libXt-devel解决错误“–with-x=yes (default) and X11 headers/libs are not available”
最终安装成功,并且tab自动补全等都有效。

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有