Ошибка установки узла при установке для целого числа npm - PullRequest
0 голосов
/ 28 февраля 2019

Версия узла: узел: v11.10.0 и npm: 6.7.0
Платформа: Windows 10
Модуль: целое число

Каждый раз, когда я пытаюсь установить целое число, я получаю следующую ошибку.

PS C:\Users\will_\OneDrive\Desktop\bot-test> npm i integer

> integer@2.1.0 install C:\Users\will_\OneDrive\Desktop\bot-test\node_modules\integer
> node-gyp rebuild


C:\Users\will_\OneDrive\Desktop\bot-test\node_modules\integer>if not defined npm_config_node_gyp (node "C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild )  else (node "C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\bin\node-gyp.js" rebuild )
gyp ERR! UNCAUGHT EXCEPTION
gyp ERR! stack Error: spawn C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\MSBuild.exe ENOENT
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:246:19)
gyp ERR! stack     at onErrorNT (internal/child_process.js:427:16)
gyp ERR! stack     at processTicksAndRejections (internal/process/next_tick.js:76:17)
gyp ERR! System Windows_NT 10.0.17134
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
gyp ERR! cwd C:\Users\will_\OneDrive\Desktop\bot-test\node_modules\integer
gyp ERR! node -v v11.10.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! This is a bug in `node-gyp`.
gyp ERR! Try to update node-gyp and file an Issue if it does not help:
gyp ERR!     <https://github.com/nodejs/node-gyp/issues>
npm WARN discord.js@11.4.2 requires a peer of bufferutil@^3.0.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.4.2 requires a peer of erlpack@discordapp/erlpack but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.4.2 requires a peer of node-opus@^0.2.7 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.4.2 requires a peer of opusscript@^0.0.6 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.4.2 requires a peer of sodium@^2.0.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.4.2 requires a peer of libsodium-wrappers@^0.7.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.4.2 requires a peer of uws@^9.14.0 but none is installed. You must install peer dependencies yourself.
npm WARN bot-test@1.0.0 No repository field.
npm WARN bot-test@1.0.0 license should be a valid SPDX license expression

npm ERR! code ELIFECYCLE
npm ERR! errno 7
npm ERR! integer@2.1.0 install: `node-gyp rebuild`
npm ERR! Exit status 7
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!     C:\Users\will_\AppData\Roaming\npm-cache\_logs\2019-02-28T07_57_21_798Z-debug.log

Я посмотрел ошибку в Google и получил другие результаты.Я пробовал разные вещи от переустановки Microsoft Visual Studio до редактирования файлов в моем реестре.Я перепробовал кучу вещей и попросил помощи на других форумах.Я просто не могу понять это самостоятельно и был бы признателен.

Ответы [ 2 ]

0 голосов
/ 17 марта 2019

Попробуйте установить node-gyp как Global.

npm install -g node-gyp

, а также вам необходимо иметь инструменты сборки, установленные в вашей системе, для установки инструментов сборки выполните эти инструкции в вашем терминале.

npm install build-tools  -g

Это должно решить вашу проблему, если убежищепока не исправлено попробуйте перезагрузить компьютер.

0 голосов
/ 28 февраля 2019

Я бы предложил вам установить инструменты сборки для узла.Это поможет вам скомпилировать пакеты node-gyp и, скорее всего, исправит вашу ошибку.Просто запустите PowerShell от имени администратора и выполните команду:

npm install --global windows-build-tools

Или, если вы используете пряжу:

yarn global add windows-build-tools

Пакет NPM: windows-build-tools

Вы также можете установить Python 2.7 и Visual C++ Build Tools вручную, но Windows-build-tools все это сделает за вас!

...