关于Xcode使用终端报错的问题

前2天更新Xcode8.0,由于从Xcode7.3到Xcode8.0变化比较大,所以不敢一下过渡过去,于是就装了2个Xcode,于是乎就出现了使用终端报错的的问题。。。

先看看报错原因:
xcrun: error: active developer path (“/Volumes/Xcode/Xcode.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)
终端提示Xcode开发工具不存在,意思就是它没找Xcode程序的路径
网上搜了一下解决方法:
在终端查找一下你Xcode的路径
输入:xcode-select -print-path
回车后会把你Xcode的路径给打印出来
然后再在终端输入sudo xcode-select -switch +路径
例如:sudo xcode-select -switch /Applications/Xcode8.0.app/Contents/Developer
回车
如果出现有输入密码之类的提示的话,再把密码输入进去就OK了

你可能感兴趣的:(Xcode)