Failed at the node-sass@4.14.1 postinstall script. npm ERR This is probably not a problem with npm

今天出现错误:

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! node-sass@4.14.0 postinstall: `node scripts/build.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the node-sass@4.14.0 postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

解决办法

1.可能是源造成的。

直接在当前目录下进行node-sass 的数据源没设置

npm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sass

再次执行

npm install

1.其他原因

使用以下指令:

rm -rf package-lock.json node_modules

npm cache clean --force

npm i --unsafe-perm node-sass