gpt4 book ai didi

javascript - 奥里利亚 npm 安装 : tons of "gyp ERR"

转载 作者:搜寻专家 更新时间:2023-11-01 00:41:05 25 4
gpt4 key购买 nike

这些类型的问题一毛钱一打,我查阅了一个又一个资源,但似乎没有任何效果:

事情是这样的,我是 NodeJS 和 Aurelia 的新手,但我的经验是,随着最近的前端革命及其所有工具的出现,人们真的让事情看起来非常简单。我敢肯定我们都见过类似这样的命令:“只需运行 do my-work-for-me,您的项目就完成了!”

Aurelia guide 为例.导航到工作目录后,您需要做的就是运行:

npm 安装

嗯,不。 npm install 依赖于 node-gyp,您必须手动安装它。嗯,你不能在安装 Python 之前安装 node-gyp。但不要获取最新版本,因为不支持 > 3.x。安装后,您会遇到 node-gyp 所需的 C++ 编译器问题。所以我们安装 Microsoft VS 2012 来获取编译器。

我做了什么:

  1. 将PYTHON设置为环境变量

     C:\Users\[name]>py
    Python 2.7.10 (default, May 23 2015, 09:44:00) [MSC v.1500 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
  2. 在 npm 中设置适用的 VS 版本,由 getter 证明:

     C:\Users\[name]>npm config get msvs_version
    2012

也就是说,当我尝试从应用程序的目标目录运行 npm install 时,我仍然遇到以下错误:

gyp ERR! build error
gyp ERR! stack Error: `C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe` failed with exit c
ode: 1
gyp ERR! stack at ChildProcess.onExit (C:\Program Files\nodejs\node_modules\npm\node_modules\nod
e-gyp\lib\build.js:270:23)
gyp ERR! stack at emitTwo (events.js:88:13)
gyp ERR! stack at ChildProcess.emit (events.js:173:7)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:201:12)
gyp ERR! System Windows_NT 6.1.7601
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:\_workspaces\skeleton-navigation-1.0.0-beta.1.0.2\node_modules\utf-8-validate
gyp ERR! node -v v5.2.0
gyp ERR! node-gyp -v v3.0.3
gyp ERR! not ok
npm WARN install:utf-8-validate@1.2.1 utf-8-validate@1.2.1 install: `node-gyp rebuild`
npm WARN install:utf-8-validate@1.2.1 Exit status 1

最佳答案

我真的、真的不喜欢回答我自己的问题,但我可以通过以下步骤解决这个问题:

  1. 卸载 Node.js
  2. 卸载 Microsoft Visual Studio 2012
  3. 卸载所有剩余的 C++ 2010 x86/x64 可再发行组件
  4. 重新安装 Node.js
  5. 使用 Node.js 重新安装 npm
  6. 安装 Microsoft Studio 2013(快捷桌面)

此时,我应该能够针对 Aurelia 目录运行 npm install,但是由于问题描述中指出的错误,我仍然失败了。

  1. 通过发出命令明确告诉 npm 使用 Microsoft Studio 2013:

    npm config set msvs_version 2013 --global
  2. 现在,执行此命令后,我能够成功执行 npm install,没有任何 GYP 错误。

我不知道为什么,但无论出于何种原因,node-gyp 似乎在 2012 年表现不佳,所以如果您遇到这个问题,我会选择 2013 年,实际上在此处引用:https://github.com/nodejs/node-gyp

关于javascript - 奥里利亚 npm 安装 : tons of "gyp ERR",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34299987/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com