安装 ggraph 时出现错误“未找到 libudunits2.a”,附加错误:对象“scale_type”未由“namespace:ggplot2”导出

安装 ggraph 时出现错误“未找到 libudunits2.a”,附加错误:对象“scale_type”未由“namespace:ggplot2”导出

我在 Ubuntu 17.10 上通过 Rstudio 安装 ggraph 时 遇到了这两个错误 'libudunits2.a not found'。我尝试在线寻找解决方案,但似乎很多人都遇到了同样的问题。我怀疑这在其他版本的 Ubuntu 中也存在类似问题。Error : object ‘scale_type’ is not exported by 'namespace:ggplot2'install.packages("ggraph")

答案1

'libudunits2.a not found' 我通过在命令行安装 libudunits2解决了第一个错误:

sudo apt-get install libudunits2-dev

当我返回 Rstudio 时,又收到一个新错误: Error : object ‘scale_type’ is not exported by 'namespace:ggplot2'

我偶然发现了一篇来自github对我来说很有用。在 Rstudio 中安装:

devtools::install_github(c("hadley/ggplot2", "GuangchuangYu/ggtree"))

使用以下命令在 Rstudio 中安装 ggraph:

install.packages("ggraph")

相关内容