尝试在 R #2 中安装 Rling 包时出错

Error trying to install Rling package in R #2

我试图从这个网站 https://benjamins.com/sites/z.195/content/package.html. In vain. There was an answer to the same question before Error trying to install Rling package in R 安装一个名为 Rling 的配套 R 包。所以我安装了 devtools 没有问题。然后我用devtools::install_local安装Rling:

devtools::install_local(choose.files(), repos = NULL, type = "source")

但我收到以下错误信息:

devtools::install_local(choose.files(), repos = NULL, type = "source") Fehler in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : Namensraum ‘processx’ 3.4.5 ist geladen, aber >= 3.5.0 wird benötigt

有谁知道我该如何解决这个问题?谢谢!

processx 是 CRAN 上的一个包: https://cran.r-project.org/web/packages/processx/index.html

2021 年 3 月更新至 3.5.0 版,4 月更新至 3.5.1 版。错误消息建议更新为

update.packages()

或者只是

install.packages("processx")