web-dev-qa-db-ja.com

エラーでnpmインストール: `gyp`が終了コードで失敗しました:1

Npm 5.6.0を使用してWindows 10にモジュールをインストールしようとしています。 npm installと入力すると、次のようになります。

gyp ERR! configure error
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack at ChildProcess.onCpExit (C:\Users\xiaooming\Desktop\app\node_modules\node-gyp\lib\configure.js:336:16)
gyp ERR! stack at emitTwo (events.js:126:13)
gyp ERR! stack at ChildProcess.emit (events.js:214:7)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:198:12)
gyp ERR! System Windows_NT 10.0.16299
gyp ERR! command "D:\\Program Files\\nodejs\\node.exe" "C:\\Users\\xiaooming\\Desktop\\app\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd C:\Users\xiaooming\Desktop\app\node_modules\node-sass
gyp ERR! node -v v8.10.0
gyp ERR! node-gyp -v v3.6.2
gyp ERR! not ok
Build failed with error code: 1
npm WARN [email protected] No repository field.
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\xiaooming\AppData\Roaming\npm-cache\_logs\2018-03-18T13_02_03_946Z-debug.log

node-sass install errorのようです。環境は次のとおりです。

pythonバージョン:2.7.14

npmバージョン:5.6.0

ノードのバージョン:8.10.0

Rubyバージョン:2.3.3p222(2016-11-21リビジョン56859)[i386-mingw32]

システム:win10(x64)

node-gyp:3.6.2

microsoft Visual Studio Express 2015をインストールした後、次のコマンドが実行されました:

npm config set msvs_version 2015
node-gyp configure --msvs_version=2015
npm install --global --production windows-build-tools

package.jsonは次のとおりです。

{
  "name": "kingt4.0app",
  "version": "1.0.0",
  "description": "an kingt4.0 project.",
  "main": "index.js",
  "scripts": {
    "test": "test.js"
  },
  "keywords": [
    "finance"
  ],
  "author": "kingdom",
  "license": "ISC",
  "devDependencies": {
    "browser-sync": "^2.11.1",
    "gulp": "^3.9.1",
    "gulp-autoprefixer": "^3.1.0",
    "gulp-cache": "^0.4.2",
    "gulp-changed": "^1.3.2",
    "gulp-clean-css": "^2.0.2",
    "gulp-file-include": "^0.13.7",
    "gulp-if": "^2.0.0",
    "gulp-imagemin": "^2.4.0",
    "gulp-rename": "^1.2.2",
    "gulp-sass": "^2.2.0",
    "gulp-sourcemaps": "^1.6.0",
    "gulp.spritesmith": "^6.2.1",
    "imagemin-jpegtran": "^4.3.2",
    "imagemin-pngquant": "^4.2.2",
    "merge-stream": "^1.0.0",
    "normalize.css": "^4.0.0",
    "spritesheet-templates": "^10.1.2",
    "vinyl-buffer": "^1.0.0"
  },
  "dependencies": {
    "remodal": "^1.0.7",
    "slick-carousel": "^1.6.0"
  }
}

この問題を解決するには?手伝ってくれてありがとう。

7
dawn

$HOME/.node-gypディレクトリを削除して、もう一度お試しください:

rm -R ~/.node-gyp
5
Soheil

これは私にとってはうまくいきます。以下のコマンドを1つずつ実行します

rm -rf node_modules
rm package-lock.json
npm update
npm install
2
Azlan Jamal

これがMacマシン(OSX)の場合、ここで実行できます

端末を使用する

xcode-select --print-path

次に、インストールされているバージョンを削除します

Sudo rm -r -f /Library/Developer/CommandLineTools

そして再インストール

xcode-select --install

それで問題が解決するはずです

参照: gyp:XOSまたはCLTバージョンが検出されませんでしたmacOS Catalina

1
user728650

以下のこのコマンドを試して、それがこの問題を一掃したかどうかを確認してください。私のMacにはカタリナがあり、このコマンドはその問題を一掃しました。


npm i -g node-gyp@latest && npm config set node_gyp "/usr/local/lib/node_modules/node-gyp/bin/node-gyp.js"
0
Ehsan Ahmadi

ここで説明したように: https://github.com/nodejs/node-gyp/issues/1634

You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application.
gyp: Call to '/usr/bin/pg_config --libdir' returned exit status 1 while in binding.gyp. while trying to load binding.gyp

私の場合、Ubuntuにlibpq-devをインストールすることで問題は解決しました

$ Sudo apt install libpq-dev

次にnode_modulesを削除して、もう一度npm installを実行してください。

これはノードモジュールの問題ではなく、問題は私のマシンにあり、それはの基準を満たしていないことに注意してくださいlibpq

brewをリポジトリとして使用しているOSX 10.15でも同じ問題に直面しています。私にとっては十分でした:

brew unlink python@2
brew link python
0
Daeron Malnwe

私はこのディレクトリを削除する方が良いと思います:

rm -rf ~/.node-gyp/
rm -r node_modules/.bin/;
rm -r build/
npm install <your module>

Windowsビルドツールをインストールする必要がある場合があります。これをチェックしてください ref

0
Dipten