web-dev-qa-db-ja.com

[email protected] postinstallスクリプトで失敗しました。これを実行することができません

私はこの問題に関するすべての質問を終えましたが、うまくいくものを見つけることができないようです。

私はこのエラーを受けています:-

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

Node_modulesを削除して、npm installを再試行しました。また、node_modulesのnode-sassフォルダーを削除しようとしましたが、npm install -g node-sass @ latestも機能しませんでした。私も試しました

npm install -g node --unsafe-perm=true --allow-root

そして

npm uninstall node-sass
npm cache clean --force
npm install -g node-sass@latest

しかし、何もまったく機能していないようです。これに光を当てることができる誰かがいますか?

御時間ありがとうございます

2
Johann

この問題とかなりの時間をかけて戦いましたが、Node(12.8.0))の現在のバージョンからLTS(10.16.2)にダウングレードし、最終的に機能しました。私のような問題があり、おそらくノードのバージョンをダウングレードしてみてください

0
Johann