Valerio Donini
Valerio Donini

Reputation: 11

Problems installing the INLA package

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?

Upvotes: 1

Views: 7471

Answers (1)

Dunois
Dunois

Reputation: 1843

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 install devtools beforehand for this).

library("devtools")
devtools::install_github(repo = "https://github.com/hrue/r-inla", ref = "stable", subdir = "rinla", build = FALSE)

I've tested this on a Unix-based machine, and it should work just fine.

Upvotes: 3

Related Questions