我试图在我的Windows 7上安装mongodb。 我安装了Windows 7 SDK,全局安装了node-gyp。
我安装了express-generator,并生成了一个测试应用程序。 当我试图运行此命令时:
"npm install mongodb --save"
我收到此错误:
"gyp ERR! stack Error: `C:\Program Files (x86)\MSBuild\14.0\bin\msbuild.exe` failed with exit code: 2148734720"
日志:
> kerberos@0.0.15 install c:\node\test1\node_modules\mongodb\node_modules\mongod
b-core\node_modules\kerberos
> (node-gyp rebuild) || (exit 0)
c:\node\test1\node_modules\mongodb\node_modules\mongodb-core\node_modules\kerber
os>if not defined npm_config_node_gyp (node "C:\Program Files\nodejs\node_module
s\npm\bin\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild )
else (node rebuild )
gyp ERR! build error
gyp ERR! stack Error: `C:\Program Files (x86)\MSBuild\14.0\bin\msbuild.exe` fail
ed with exit code: 2148734720
gyp ERR! stack at ChildProcess.onExit (C:\Program Files\nodejs\node_modules\
npm\node_modules\node-gyp\lib\build.js:270:23)
gyp ERR! stack at emitTwo (events.js:87:13)
gyp ERR! stack at ChildProcess.emit (events.js:172:7)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_proces
s.js:200:12)
gyp ERR! System Windows_NT 6.1.7601
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodej
s\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
gyp ERR! cwd c:\node\test1\node_modules\mongodb\node_modules\mongodb-core\node_m
odules\kerberos
gyp ERR! node -v v4.1.2
gyp ERR! node-gyp -v v3.0.3
gyp ERR! not ok
mongodb@2.0.45 node_modules\mongodb
├── es6-promise@2.1.1
├── readable-stream@1.0.31 (string_decoder@0.10.31, core-util-is@1.0.1, isarray@
0.0.1, inherits@2.0.1)
└── mongodb-core@1.2.14 (bson@0.4.16, kerberos@0.0.15)
真的在寻求帮助。 感谢
答案 0 :(得分:3)
似乎很多人在Windows上构建本机模块时遇到了麻烦。如果其他人遇到如上所述的node-gyp
错误,请尝试以下步骤:
node
和npm
node_modules
)npm config set msvs_version 2013 --global
npm install
答案 1 :(得分:0)
错误代码实际上是代码0x80131700(2148734720到十六进制)。 要修复它,只需像这样启动msbuild.exe:
MsBuild [SLN的完整路径] / nologo / p:配置=发布;平台= [x64或x86]
这会抛出错误。对我来说它说安装了错误的.NET框架,它问我现在是否要安装它。我选择了肯定,安装后工作正常。