Нет правила для создания цели `node_modules / node-gyp / addon.gypi`, необходимой для` Makefile ' - PullRequest
1 голос
/ 16 июня 2019

Я сталкиваюсь с ошибкой при попытке установить требования для пакета, над которым я работаю, он достигает integer@2.1.0, а затем происходит сбой из-за ошибки с node-gyp.

  • Версия узла : 10.10.0 / 6.4.1
  • Платформа : Darwin Matts-MBP-3.local 19.0.0 Darwin Kernel Версия 19.0.0: Пт 24 мая 17:36:10 PDT 2019; root: xnu-6041.0.0.111.5 ~ 1 / RELEASE_X86_64 x86_64
  • Компилятор : Apple clang version 11.0.0 (clang-1100.0.20.17) Target: x86_64-apple-darwin19.0.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin
> integer@2.1.0 install /Users/mattcowley/WebstormProjects/MagicCap/node_modules/integer
> node-gyp rebuild

make: *** No rule to make target `../../../../../../../usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi', needed by `Makefile'.  Stop.
gyp ERR! build error 
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack     at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:262: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 Darwin 19.0.0
gyp ERR! command "/usr/local/Cellar/node/10.10.0/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Users/mattcowley/WebstormProjects/MagicCap/node_modules/integer
gyp ERR! node -v v10.10.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok 
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! integer@2.1.0 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the integer@2.1.0 install 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!     /Users/mattcowley/.npm/_logs/2019-06-16T10_33_53_751Z-debug.log

2019-06-16T10_33_53_751Z-debug.log

Любая помощь в решении этой проблемы будет принята с благодарностью! Я также обратился и поднял проблему с node-gyp, но мысль о публикации здесь может дать ответ раньше:)

...