在Linux中运行R时出错

前端之家收集整理的这篇文章主要介绍了在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

知道需要安装什么吗?

最佳答案
在配置R之前,以root身份运行以下命令:

yum install gcc

这个命令将安装GNU最新的F77编译器,然后你应该能够像你在问题中提到的那样安装R.

如果您因任何原因需要旧的g77,请运行此(以root身份)

yum install compat-gcc*

g77编译器已停止开发,因此it is replaced by gfortran in gcc> 4.2.

原文链接:https://www.f2er.com/linux/440794.html

猜你在找的Linux相关文章