配置:macOS High Sierra,版本 10.13.2,节点:v8.1.2 npm:5.0.3 当我在 angularjs 项目中运行 npm start 时,出现此错误:
ERROR in Cannot find module 'node-sass'
在此之后我运行:
npm i node-sass
现在我得到这个错误:
gyp: No Xcode or CLT version detected! gyp ERR! configure error gyp ERR! stack Error: `gyp` failed with exit code: 1
为什么 npm 不安装 node-sass?如何安装 node-sass?
这是解决方案:
sudo npm install --save-dev --unsafe-perm node-sass
享受!
编辑以解释选项(来自评论):
--save-dev 用于使您的应用程序能够在本地 node_modules 中找到该模块。--save-dev 将包添加到 package.json 中的 devDependencies。--unsafe–perm 用于以 root 身份运行安装脚本。为避免使用 sudo,请改用 nvm。--unsafe–perm 真的不需要,因为 sudo 已经提到过。因此,该命令基本上会不惜一切代价地密封脚本以安装 node-sass。