When I run '''install.packages("INLA", repos=c(getOption("repos"), INLA="https://inla.r-inla-download.org/R/testing"), dep=TRUE)''' keeps me giving this error:
Warning in install.packages : cannot open URL 'https://inla.r-inla-download.org/R/testing/bin/macosx/contrib/4.0/INLA_21.03.14-2.tgz': HTTP status was '404 Not Found'
Can anyone help me understand?
Looks like you're getting both network errors (
download length != reported length
) and installation errors of some sort.I'd suggest trying to install the package from their
GitHub
repo directly like so (you'll need to installdevtools
beforehand for this).I've tested this on a Unix-based machine, and it should work just fine.