Failed at the node-sass@4.14.1 postinstall script(超简单解决)
摘要:解决node-sass@4.14.1安装失败问题的方法。首先检查node与node-sass版本是否匹配,建议使用nvm管理node版本。解决方案包括:1)卸载当前node-sass;2)清除npm缓存;3)通过npm install node-sass@4.14.1 --save-dev --unsafe-perm --verbose --ignore-scripts重新安装;4)最后执行
·
Failed at the node-sass@4.14.1 postinstall script【超简单解决】
1、问题描述
npm install 安装依赖时,报错node-sass@4.14.1安装失败。
Failed at the node-sass@4.14.1 postinstall script

2、排查node和node-asaa版本是否匹配
如果不匹配,请卸载node换成匹配的版本。
嫌node卸载,安装 麻烦的话,强烈推荐使用 nvm 来管理node版本。
3、问题解决
3.1、卸载node-sass@4.14.1
npm uninstall node-sass
3.2、清除npm缓存
npm cache clean --force
3.3、安装node-sass@4.14.1
npm install node-sass@4.14.1 --save-dev --unsafe-perm --verbose --ignore-scripts
3.4、重新执行npm install
重新执行npm i 即可解决问题。
更多推荐
所有评论(0)