web-dev-qa-db-ja.com

npm install:[email protected] postinstallスクリプトで失敗しました

angular application: https://github.com/XBITSwitzerland/ngx-admin/tree/ng2-admin

そして今私はやろうとします:npm install

しかし、このエラーが発生します(コマンドの出力が長すぎるため、ここで最後の部分を共有します)。

gyp ERR! build error
gyp ERR! stack Error: `C:\Program Files (x86)\MSBuild\14.0\bin\msbuild.exe` failed with exit code: 1
gyp ERR! stack     at ChildProcess.onExit (C:\github\ngx-admin\node_modules\node-gyp\lib\build.js:258:23)
gyp ERR! stack     at ChildProcess.emit (events.js:182:13)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:240:12)
gyp ERR! System Windows_NT 10.0.17134
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\github\\ngx-admin\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd C:\github\ngx-admin\node_modules\wintersmith-sassy\node_modules\node-sass
gyp ERR! node -v v10.15.0
gyp ERR! node-gyp -v v3.6.2
gyp ERR! not ok
Build failed with error code: 1
npm WARN [email protected] requires a peer of @angular/core@^2.2.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of @angular/common@^2.2.0 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\webpack-dev-server\node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","Arch":"any"} (current: {"os":"win32","Arch":"x64"})
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\watchpack\node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","Arch":"any"} (current: {"os":"win32","Arch":"x64"})
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","Arch":"any"} (current: {"os":"win32","Arch":"x64"})

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.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\danyb\AppData\Roaming\npm-cache\_logs\2019-01-29T18_25_12_699Z-debug.log

誰かがこのエラーが発生する理由とそれを解決する方法を知っていますか?

この問題が発生した場合は、このページをお読みください: https://www.bramvandenbulcke.be/en/kb/failed-node-sass3131-postinstall-script

私の場合の解決策:

1)package-lock.jsonファイルを削除します

2)npm install gulp-sass --save-dev

3)npm install node-sass@latest

バージョン固有の注意事項:

[email protected]は、 [リリースノート に記載されているv7までのNode.jsのバージョンでのみ実行できます。

13

これは、node-sassモジュールがないために起こっていると思います。以下を試してビルドスクリプトを再実行し、問題が解決するかどうかを確認してください。

npm install node-sass@latest

また、Windowsプラットフォームで fsevents を使用しているようですが、このモジュールはOS X FSEventsへのネイティブアクセスでのみサポートされています

5
Nathan

このメッセージの後にnpmインストールでエラー[email protected] postinstall: node scripts/build.jsが発生しました

> node scripts/install.js

Downloading binary from https://github.com/sass/node-sass/releases/download/v3.13.1/linux-x64-72_binding.node
Cannot download "https://github.com/sass/node-sass/releases/download/v3.13.1/linux-x64-72_binding.node": 

HTTP error 404 Not Found

Hint: If github.com is not accessible in your location
      try setting a proxy via HTTP_PROXY, e.g. 

      export HTTP_PROXY=http://example.com:1234

or configure npm proxy via

      npm config set proxy http://example.com:8080

> [email protected] postinstall /var/www/my/armat/www/node_modules/core-js
> node scripts/postinstall || echo "ignore"

解決策を見つけるために何時間も費やしました。古いバージョンのノードとnpmを使用するlaravel 5.2にインストールしようとしていましたが、これが役に立ちました

$ npm install -g n
$ n 6.10.2    // selecting version you need in my case 6.10.2
$ npm install -g [email protected] // same for npm

これが他の誰かを助けることを願っています^ _ ^

5

次のコマンドを段階的に実行します

  • Package-lock.jsonファイルを削除します
  • npm install gulp-sass --save-dev
  • npm install node-sass @ latest

Package.jsonを削除したくない場合は、npm rebuild node-sass --forceを実行してください。

私も同じエラーを受け取りました

"npm ERR!コードELIFECYCLE npm ERR!errno 1 npm ERR![email protected] postinstall:node scripts/build.js npm ERR!終了ステータス1 npm ERR! npm ERR! [email protected] postinstallスクリプトで失敗しました。 npm ERR!これはおそらくnpmの問題ではありません。上記の追加のログ出力がある可能性があります。」

ソリューション:

Node.sassとgulp-sassのバージョンをpackage.jsonファイルで最新に増やした後、問題が修正されました。