美文网首页
error R: 载入名字空间‘vctrs’ 0.3.4,但需要

error R: 载入名字空间‘vctrs’ 0.3.4,但需要

作者: 胡童远 | 来源:发表于2021-07-16 17:46 被阅读0次

前面安装某包后造成依赖冲突,结果我伟大的ggtree依赖出问题了

错误: package or namespace load failed for ‘ggtree’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): 载入了名字空间‘vctrs’ 0.3.4,但需要的是>= 0.3.6

办法1:重新安装vctrs

install.packages("vctrs")

Warning: 无法将拆除原来安装的程序包‘vctrs’

办法2:删除vctrs后重装

关闭R
打开C:\Users\hutongyuan\Documents\R\win-library\4.0
手动删除
install.packages("vctrs")

加载ggtree出现新的报错

载入了名字空间‘ellipsis’ 0.3.1,但需要的是>= 0.3.2

办法

关闭R
打开C:\Users\hutongyuan\Documents\R\win-library\4.0
手动删除
install.packages("ellipsis")

相关文章

网友评论

      本文标题:error R: 载入名字空间‘vctrs’ 0.3.4,但需要

      本文链接:https://www.haomeiwen.com/subject/kuubpltx.html