xcrun-error-invalid-active-developer-path解决办法
目录
xcrun: error: invalid active developer path解决办法
mac下如果安装过xcode,之后又卸载,再使用git等命令时就提示错误。invalid active path(Applications/Xcode.app/Contents/Developer),一般情况可以通过xcode-select –switch指定一个xcode安装路径,如果不想安装xcode,那么可以通过重置系统默认开发工具路径.
可以通过xcode-select命令来重置系统默认的CommandLineTools路径,如下:
另外,homebrew安装过程部分日志:
==> /usr/bin/sudo /bin/rm -f /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress
==> /usr/bin/sudo /usr/bin/xcode-select --switch /Library/Developer/CommandLineTools
==> Downloading and installing Homebrew...
从中可以看出系统会通过xcode-select –switch指定CommandLineTools路径,这就是系统默认的开发者工具路径。