如何解决 Mac 上 No Xcode or CLT version detected 的报错?
最近在安装 npm 时,遇到下面报错:
No Xcode or CLT version detected
解决方案分下面3个阶段
- 1、执行 xcode-select --install
- 2、如果执行上面命令还是无法解决,报如下类似错误:
xcode-select: error: command line tools are already installed, use "Software Update" to install updates
请执行下面命令:
sudo rm -rf /Library/Developer/CommandLineTools xcode-select --install
- 3、再不行,请执行 sudo xcode-select --reset 试试。
通过上面3个步骤,问题可以解决。