I have been trying to install the R package, Kernlab from source, but I have been running into problems. At first, I had some error related to gfortran, so I downloaded the GNU fortran compiler from http://r.research.att.com/tools/
Then when I type the following command: R CMD INSTALL kernlab_0.9-12.tar.gz
I get the following error:
installing to /Library/Frameworks/R.framework/Versions/2.13/Resources/library/kernlab/libs/x86_64
** R
** data
** inst
** preparing package for lazy loading
Error in .walkClassGraph(ClassDef, "contains", where, attr(ext, "conflicts")) :
the "superClass" list for class "list", includes an undefined class "input"
Error in .walkClassGraph(ClassDef, "contains", where, attr(ext, "conflicts")) :
the "superClass" list for class "numeric", includes an undefined class "output"
Error : evaluation nested too deeply: infinite recursion / options(expressions=)?
Error in setClassUnion("listI", c("list", "numeric", "vector", "integer", :
unable to create union class: could not set members "list", "numeric"
Error : unable to load R code in package 'kernlab'
ERROR: lazy loading failed for package ‘kernlab’
* removing ‘/Library/Frameworks/R.framework/Versions/2.13/Resources/library/kernlab’
* restoring previous ‘/Library/Frameworks/R.framework/Versions/2.13/Resources/library/kernlab’
Does anyone know how to solve this error? PS. For the GNU fortran compiler I downloaded, it says that is for Xcode version up to 3.2.5; and I have Xcode version 3.2.6. Is this the source of my error, or am I looking in the wrong direction?
It must be something with your system. On my Linux box, kernlab_0.9-12 installs fine:
Moreover, it has nothing to do with
gfortran
as the package seems to contain only C and C++ files.