所以,我一直收到这样的错误:库(Tidyverse)
警告:包‘tidyverse’是在RVersion4.1.3错误下生成的:loadNamespace中的‘tidyverse’包或名称空间加载失败(I,c(lib.loc,.libPaths(),versionCheck =vI[i])):没有名为‘stringi’的包
这对潮间文学来说不是特殊的。我和installR得到了完全相同的错误。什么是弦乐?我卸载和重新安装的字符串包,它继续。我试过devtools,它还在继续。
我尝试使用installR更新R,然后错误继续。我试着从cran下载它,它还在继续。
有什么建议吗!这太烦人了。
发布于 2022-09-16 14:41:55
错误消息建议您首先安装stringi包。因此,您需要运行以下命令:
install.packages( c('stringi', 'tidyverse') )或者,您可以尝试使用以下方法安装包及其依赖项:
install.packages('tidyverse', dependencies = c("Depends", "Imports", "LinkingTo") # "this installs all the packages needed to run pkgs, their examples, tests and vignettes (if the package author specified them correctly)." per the description for the help file for install.packages()https://stackoverflow.com/questions/73745204
复制相似问题