npm install 时出现上述问题,解决方案如下:
1、命令行输入xcode-select --print-path查看 command-line tools 的安装路径,一般情况下应该是:/Library/Developer/CommandLineTools
2、然后输入sudo rm -r -f /Library/Developer/CommandLineTools删除 command-line tools 工具
3、最后输入xcode-select --install,重新安装xcode-select 工具
4、重新 npm install 安装依赖就可以了。
参考文章:https://blog.csdn.net/qq_41070393/article/details/110862053
网友评论