R 安排自动包更新

R schedule automatic package updates

我想每天自动检查和更新软件包。 为此,我在下面写了几行,当我在我的 RStudio 中执行它时 运行 很顺利。

options(install.packages.compile.from.source = "always")
update.packages(ask = FALSE, dependencies = TRUE)

然后我每天将这个带有 taskscheduleR 包的迷你脚本安排到 运行。 已成功调用计划作业执行但正在暂停并记录以下错误:

Error in contrib.url(repos, type) : 
  trying to use CRAN without setting a mirror
Calls: update.packages -> available.packages -> contrib.url
Execution halted

我需要添加什么才能让它执行?

添加此以指定 CRAN 镜像:

options(repos = c(CRAN = "http://cran.rstudio.com"))

现在可以用了吗?