``` Error :
xcrun: error: active developer path ("/Applications/Xcode8.1.app/Contents/Developer") does not exist, use sudo 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) ```
该错误是Xcode路径错误,打开终端输入命令行
xcode-select -switch /Applications/Xcode.app/Contents/Developer
如果出现 Error :
xcode-select: error: --switch must be run as root (e.g. `sudo xcode-select --switch `).
则需要这样输入 :
sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
注意: 其中路径中的 Xcode.app 有的人修改了 Xcode 的名称需要改成对应的名称
例如:我把 Xcode 改成 Xcode8.1 在路径中就是
/Applications/Xcode8.1.app/Contents/Developer
这个知道就可以了 一般没人去改名称