【问题标题】:Can't install package through npm that relies on node-gyp无法通过依赖 node-gyp 的 npm 安装包
【发布时间】:2018-12-16 15:02:12
【问题描述】:

这是我尝试安装软件包时遇到的错误:

C:\WINDOWS\system32\node_modules\lame>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! configure error
gyp ERR! stack Error: Can't find Python executable "C:\Program", you can set the PYTHON env variable.
gyp ERR! stack     at PythonFinder.failNoPython (C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\configure.js:483:19)
gyp ERR! stack     at PythonFinder.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\configure.js:508:16)
gyp ERR! stack     at C:\Program Files\nodejs\node_modules\npm\node_modules\graceful-fs\polyfills.js:284:29
gyp ERR! stack     at FSReqWrap.oncomplete (fs.js:158:21)
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:\WINDOWS\system32\node_modules\lame
gyp ERR! node -v v10.6.0
gyp ERR! node-gyp -v v3.6.2
gyp ERR! not ok
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! lame@1.2.4 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the lame@1.2.4 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\Home\AppData\Roaming\npm-cache\_logs\2018-07-08T23_48_21_208Z-debug.log

包括node-gyp 在内的所有其他软件包都可以正常安装。我发现了一些有类似问题的人的线程,但他们的解决方案都没有奏效。根据this回答的建议,我尝试了这些事情:

UPDATED 09/2016
If you're using Windows you can now install all node-gyp dependencies with single command (NOTE: Run As Admin in Windows PowerShell):

 $ npm install --global --production windows-build-tools
and then install the package

 $ npm install --global node-gyp
UPDATED 06/2018
https://github.com/nodejs/node-gyp/issues/809#issuecomment-155019383

Delete your $HOME/.node-gyp directory and try again.

See full documentation here: node-gyp

他们必须生效。感谢您的宝贵时间!

【问题讨论】:

  • 你安装了 Python 吗?这就是我看到的问题。
  • $ npm install --global --production windows-build-tools 已安装 Python。我应该尝试自己安装吗?如果是这样,我该如何设置它提到的PYTHON 环境变量?
  • 首先,您必须找出它的安装位置,然后按照以下步骤将其添加到路径变量中:stackoverflow.com/questions/3701646/… 您可以通过在命令提示符下键入 python 来测试它是否有效并从那里获取版本号。

标签: node.js npm npm-install node-gyp


【解决方案1】:

你安装了python吗?

这是您的错误: Error: Can't find Python executable "C:\Program", you can set the PYTHON env variable.

你也可以把你的python放在一个没有空格的路径中来解决你的问题,直到问题被修复

See thisthis issue on github

【讨论】:

  • $ npm install --global --production windows-build-tools 已安装 Python。我应该尝试自己安装吗?如果是这样,我该如何设置它提到的PYTHON 环境变量?
  • 问题不是没有安装python,而是调用它的东西没有正确引用路径("C:\Program" 几乎可以肯定是C:\Program Files)。也就是说,我不确定在哪里解决这个问题。对我来说,这似乎是相关模块上的一个错误。
  • Try it。它应该可以解决您的问题。
  • 在重新安装Python,摆弄环境变量,重新安装node-gyp之后,它工作了。谢谢大家的帮助。
  • 即使在错误消息中报告的位置正确安装了 Python,我也收到此错误。让我摆脱困境的是在全球范围内重新安装 node-gyp:$ npm install -g node-gyp
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-04-27
  • 2019-04-21
  • 1970-01-01
  • 2015-12-07
  • 2017-06-03
相关资源
最近更新 更多