报错内容
在升级为 macOS Mojave 后发现 Homebrew 无法使用,具体报错信息如下:
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Error: Failure while executing; `git config --local --replace-all homebrew.private true` exited with 1.
查询及解决
使用 Google 查询后,在 Stackxchange 上找到了一篇相关文章 How to fix homebrew error: “invalid active developer path” after upgrade to OS X El Capitan? 讲了解决方案。
简单说就是因为系统升级把 XCode-CLI 给卸载了,需要重新安装才能使用,因此只要通过终端再次安装即可。
解决办法为,打开终端后,输入xcode-select --install
,安装即可。