ios構建 xcode-select: error: tool xcodebuild requires Xcode 錯誤

報錯xcode-select: error: tool ‘xcodebuild’ requires Xcode, but active developer directory ‘/Library/Developer/CommandLineTools’ is a command line tools instance

報這個錯誤的原因是xcode-select不在默認的路徑

  1. 找到xcode-select的當前路徑終端命令行
xcode-select --print-path
/Library/Developer/CommandLineTools
  1. 設置xcode-select到指定位置
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/ 
  1. 驗證是否設置成功
xcode-select --print-path
/Applications/Xcode.app/Contents/Developer
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章