我一步一步地遵循这个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
知道需要安装什么吗?
答案 0 :(得分:20)
尝试安装 gfortran 。
例如: apt-get install gfortran
答案 1 :(得分:7)
以 root 运行以下命令:
yum install gcc
此命令将安装GNU的最新F77编译器,然后您应该能够安装 R ,正如您在问题中所提到的那样。
<小时/> 如果您因任何原因需要旧g77 ,请运行此项( root )
yum install compat-gcc*
g77
编译器已停止开发,因此it is replaced by gfortran
in gcc
&gt; 4.2。