我尝试安装断言包并收到此错误消息:
'Warning in install.packages :
package ‘assertive’ is not available for this version of R A version of this package for your version of R might be available elsewhere'
我查看了 CRAN,它显示“包‘assertive’已从 CRAN 存储库中删除”(https://cran.r-project.org/web/packages/assertive/index.html)
我正在使用最新版本的 R Studio (RStudio 2023.12.0+369) 和 R。我如何获取此软件包?这是对另一个的依赖,所以我真的需要它......
扩展菲尔的回复:
install.packages("devtools") # 你需要安装devtools才能访问cran上不再有的包# google帮我找到了assertive的来源...
devtools::install_bitbucket("richierocks/assertive") #(这失败了,因为断言是一堆需要安装的其他依赖项)