Hello
I have used INLA for a while but started using it on a server this week and have not been able to run my model because found some issues creating the mesh.
I tried to run a simple example, to double check if my original code was wrong but I still get this:
mesh=inla.mesh.create.helper(points=as.matrix(unique(coordinates[,list(UTMX,UTMY)])),max.edge=c(25000,100000))
/home/uqjossam/.R/library/INLA/bin/linux/64bit/fmesher: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /home/uqjossam/.R/library/INLA/bin/linux/64bit/fmesher)
/home/uqjossam/.R/library/INLA/bin/linux/64bit/fmesher: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by /home/uqjossam/.R/library/INLA/bin/linux/64bit/fmesher)
/home/uqjossam/.R/library/INLA/bin/linux/64bit/fmesher: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by /home/uqjossam/.R/library/INLA/bin/linux/64bit/libgsl.so.19)
Error in fmesher.read(prefix, "manifold") :
File '/scratch/30275/Rtmp25iUCc/fmesher48db412c71e2.manifold' does not exist.
I would say the code is not the problem as I run the same code with the same input data on my machine and it worked fine.
I tried using another function to create the Mesh, but got something similar:
mesh=inla.mesh.2d(loc=as.matrix(unique(coordinates[,list(UTMX,UTMY)])),max.edge=c(25000,100000))
/home/uqjossam/.R/library/INLA/bin/linux/64bit/fmesher: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /home/uqjossam/.R/library/INLA/bin/linux/64bit/fmesher)
/home/uqjossam/.R/library/INLA/bin/linux/64bit/fmesher: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by /home/uqjossam/.R/library/INLA/bin/linux/64bit/fmesher)
/home/uqjossam/.R/library/INLA/bin/linux/64bit/fmesher: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by /home/uqjossam/.R/library/INLA/bin/linux/64bit/libgsl.so.19)
Error in fmesher.read(prefix, "manifold") :
File '/scratch/30275/Rtmp25iUCc/fmesher48db69c68bb.manifold' does not exist.
I remove the package and installed it again, but the problem persist. Anyone has an idea why this may happen and how can I solve it? Could the R version has something to do with this?
Info from the server is as follows:
sessionInfo()
R version 3.3.0 (2016-05-03)
Platform: x86_64-redhat-linux-gnu (64-bit)
Running under: CentOS release 6.8 (Final)
Info from my machine
sessionInfo()
R version 3.2.3 (2015-12-10)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
Thanks a lot in advance
Juan