我正在尝试在基于 Linux 的计算集群上安装R-INLA 项目INLA
的包。该软件包不在 CRAN 上。根据他们的教程,使用就足够了
install.packages("INLA",repos=c(getOption("repos"),INLA="https://inla.r-inla-download.org/R/stable"), dep=TRUE)
用于安装,在我的本地机器上运行良好。但是,在计算集群上,运行此命令似乎需要 CRAN 镜像,我收到以下错误:
Error in contrib.url(repos, type) :
trying to use CRAN without setting a mirror
Calls: install.packages -> startsWith -> contrib.url
Execution halted
作为替代方案,我尝试使用devtools
. 出于某种原因,这给了我明显不正确的版本号INLA_99.99.9999
。这禁止我手动添加必要的二进制文件,INLA:::inla.binary.install()
因为找不到版本号。任何帮助表示赞赏!