我将我的os x从mavericks升级到EL Capitan,当想在android studio中使用git时,我收到了这个错误:
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
任何人都有解决方案吗?
答案 0 :(得分:15)
请参阅此解决方案:
将Mac OS X更新为'El Capitan'后,我的本地git命令不再起作用了。使用git命令时,命令行返回:
xcrun:错误:无效的活动开发者路径(/ Library / Developer / CommandLineTools),缺少xcrun:/ Library / Developer / CommandLineTools / usr / bin / xcrun
解决此问题的解决方案是使用以下命令重新安装命令行开发人员工具:
xcode-select --install
答案 1 :(得分:2)
升级到El-Capitan后面对此
xcode-select --install
即使在“查找软件”和下载之后,也无法为我工作。我没有安装Xcode.app(不想安装它)所以我通过从Command Line Tools下载https://developer.apple.com/downloads/来修复它(需要Apple SignIn)并手动安装它。
安装后我可以再次运行git
个命令
答案 2 :(得分:2)
xcode-select --install 在您的终端上运行
它对我有用