美文网首页
Xcode-select 报错

Xcode-select 报错

作者: Rui哥 | 来源:发表于2021-08-27 13:45 被阅读0次

iOS自动化构建 xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/D...

报这个错误的原因是xcode-select不在默认的路径
1.找到xcode-select的当前路径终端命令行

xcode-select --print-path
/Library/Developer/CommandLineTools

2.设置xcode-select到指定位置

sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/ 

3.验证是否设置成功

xcode-select --print-path
/Applications/Xcode.app/Contents/Developer

相关文章

网友评论

      本文标题:Xcode-select 报错

      本文链接:https://www.haomeiwen.com/subject/dtsmiltx.html