Redis報錯:xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing
今天安裝Redis的時候,報了一個錯誤:
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools),
missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
12
后來發現是因為Mac最新場景下安裝Xcode時已經沒有Command Line了,需要單獨安裝。根據提示在使用命令xcode-select --install 安裝時最后結果是不能安裝該軟件。
所以只要執行:
xcode-select --install
就可以了。