ERR: node-gyp rebuild No Xcode or CLT version detected

臉都不要了發表於2020-10-14

在執行npm install 或者 vue create的時候報錯出以下的錯誤:

> node-gyp rebuild

No receipt for 'com.apple.pkg.CLTools_Executables' found at '/'.

No receipt for 'com.apple.pkg.DeveloperToolsCLILeo' found at '/'.

No receipt for 'com.apple.pkg.DeveloperToolsCLI' found at '/'.

gyp: No Xcode or CLT version detected!
gyp ERR! configure error 
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack     at ChildProcess.onCpExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:351:16)
gyp ERR! stack     at ChildProcess.emit (events.js:210:5)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:272:12)
gyp ERR! System Darwin 19.3.0
gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/yangjian/Documents/temp/test001/node_modules/fsevents
gyp ERR! node -v v12.13.0
gyp ERR! node-gyp -v v5.0.5
gyp ERR! not ok

親測該錯誤是由於升級了系統版本,但Command Line Tools版本不相容導致,需要解除安裝並重新安裝,當然如果你沒有XCODE理論上需要先安裝XCODE。

// 刪除
$ sudo rm -rf $(xcode-select -print-path)
# 可以先嚐試這個第二條命令。但系統應該已經安裝了。
$ xcode-select --install

如果解除安裝後安裝時報出 不能安裝該軟體,因為當前無法從軟體更新伺服器獲得的錯誤,那麼此時需要去蘋果官網手動下載,下載檔案為dmg檔案,直接安裝即可。
在這裡插入圖片描述
注意XCODE的版本和系統版本,我自己保證了XCODE版本一致,系統差一個小版本號,實際安裝之後沒有任何問題。

相關文章