在Linux中运行R时出错

时间:2013-07-18 10:05:20

标签: linux r

我一步一步地遵循这个R 2.15 install in Redhat 在Cent os 6.3中安装R,在中间步骤中得到了这个错误,我创建了progsandlibs

dir in ~

[root@localhost R-2.15.2]# ./configure --prefix=~/progsandlibs/ --enable-R-shlib
configure: error: expected an absolute directory name for --prefix: ~/progsandlibs

然后我尝试了./configure

configure: error: in `/root/progsandlibs/R-2.15.2':
configure: error: no acceptable C compiler found in $PATH

我通过yum安装了gcc编译器

稍后当我运行./configure时出现此错误

 configure: error: No F77 compiler found

知道需要安装什么吗?

2 个答案:

答案 0 :(得分:20)

尝试安装 gfortran

例如: apt-get install gfortran

答案 1 :(得分:7)

在配置 R 之前,

root 运行以下命令:

yum install gcc

此命令将安装GNU的最新F77编译器,然后您应该能够安装 R ,正如您在问题中所提到的那样。

<小时/> 如果您因任何原因需要旧g77 ,请运行此项( root

yum install compat-gcc*

g77编译器已停止开发,因此it is replaced by gfortran in gcc&gt; 4.2。