Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If devtools crashes and fails to install dependencies, the remotes R package can be directly installed instead of devtools with the following command:

install.packages("remotes", lib = "~/rlibs", type = "source", repo = "https://cloud.r-project.org/")

#4

Install R-INLA:

Code Block
[netidhere@node ~]$ R

> .libPaths("~/rlibs")
> library(devtools) OR library(remotes)
> remotes::install_version("INLA", lib = "~/rlibs", version="24.02.09",repos=c(getOption("repos"),INLA="https://inla.r-inla-download.org/R/stable"), dep=TRUE)

...