From e5ff9e1067cf523daa8f2d9923c517fd697ae11c Mon Sep 17 00:00:00 2001 From: John Aiken Date: Sat, 12 Oct 2024 14:25:18 +0000 Subject: [PATCH 1/2] added install INLA to the quickstart --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7a25c950..8e028055 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ The easiest way to do this is to [install RStudio](https://posit.co/downloads/). Next start an R session and run ```R +install.packages("INLA") install.packages("devtools") library(devtools) devtools::install_github("4DModeller/fdmr") From 3b65174de30223d74e9ad8875f43ced3c7d865b1 Mon Sep 17 00:00:00 2001 From: "Anrijs K. Abele" <57137242+aabelean@users.noreply.github.com> Date: Thu, 17 Oct 2024 09:52:50 +0100 Subject: [PATCH 2/2] Correction to install INLA --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8e028055..48560f20 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ The easiest way to do this is to [install RStudio](https://posit.co/downloads/). Next start an R session and run ```R -install.packages("INLA") +install.packages("INLA", repos=c(getOption("repos"), INLA="https://inla.r-inla-download.org/R/stable"), dep=TRUE) install.packages("devtools") library(devtools) devtools::install_github("4DModeller/fdmr")