在准备解决线上app中的bug时,执行命令行定位出错代码位置的时候出现下面这种错误
xcrun: error: active developer path ("/Applications/Xcode 7.1.app/Contents/Developer") does not exist, use xcode-select --switch path/to/Xcode.app
to specify the Xcode that you wish to use for command line developer tools (or see man xcode-select
)
附:我上面出错是因为我的xcode7.1被我删了
解决方法:
终端执行sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
命令,然后再输入一次系统的密码,完成。