Error running R in Linux -
i followed r 2.15 install in redhat step step install r in cent os 6.3, got error in intermediate step, have created progsandlibs
dir in ~ [root@localhost r-2.15.2]# ./configure --prefix=~/progsandlibs/ --enable-r-shlib configure: error: expected absolute directory name --prefix: ~/progsandlibs
then tried ./configure
configure: error: in `/root/progsandlibs/r-2.15.2': configure: error: no acceptable c compiler found in $path
i installed gcc compiler through yum
later when run ./configure
got error
configure: error: no f77 compiler found
any idea needs installed ?
run following command root before configuring r:
yum install gcc
this command install latest f77 compiler gnu, should able install r mentioned in question.
if need old g77 whatever reason please run (as root)
yum install compat-gcc*
g77
compiler has stopped development it replaced gfortran
in gcc
> 4.2.
Comments
Post a Comment