问题描述:
我正在尝试在Macos Mojave 10.14.1上安装的R Studio上安装“ ggplot2”软件包。每次我尝试使用其中一个进行安装
install.packages("ggplot2", dependencies = T)
R Studio->工具->安装软件包...,然后键入'ggplot2
'
出现以下错误:
sh: line 1: 1549 Abort trap: 6 /Applications/Xcode.app/Contents/Developer
error: unable to find utility "package_name", not a developer tool or in PATH
我解决问题的方法:
以上方法都不适合我。
我该如何克服这个问题?!
答案 0 :(得分:0)
我遇到了Ivan Mir提供的Stackoverflow解决方案,基本上,您需要执行以下操作:
在您的终端中检出xcode-select --print-path
。
如果是/Applications/Xcode.app/Contents/Developer
,请运行
sudo xcode-select --switch /Library/Developer/CommandLineTools to set xcode-select to non-Xcode Command Line Tools
。
如果您没有/ Library / Developer / CommandLineTools目录,则可以为您的当前Xcode版本获取它们here。