Node-gyp找不到msbuild.exe

时间:2015-02-01 22:23:29

标签: node.js path

您好我正在研究在Windows上创建本机节点模块的过程,但每当我运行node-gyp build binding.gyp命令时,我都会收到一条错误消息 "error: Can't find "msbuild.exe". Do you have Microsoft Visual Studio C++ 2008 installed?"。  我安装了Visual Studio 2013,msbuild目录为C:\Windows\Microsoft.NET\Framework\v3.5\msbuild.exe.我尝试将其添加到PATH变量,我可以启动cmd提示符并运行msbuild.exe并返回版本,这样看来为了工作,但由于某种原因,node-gyp无法检测到它,我甚至尝试修改node-gyp中的build.js文件,使其指向msbuild位置,但它失败了。

3 个答案:

答案 0 :(得分:4)

在我的情况下,它给出了以下错误:

C:\Users\user\DemoApp2\node_modules\bufferutil>if not defined npm_config_node_gyp (node "C:\Program Files\nodejs\node_modules\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: Can't find "msbuild.exe". Do you have Microsoft Visual Studio C++ 2008+ installed?
gyp ERR! stack     at findMsbuild (C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\build.js:128:23)
gyp ERR! stack     at C:\Program Files\nodejs\node_modules\npm\node_modules\node-gyp\lib\build.js:110:11
gyp ERR! stack     at F (C:\Program Files\nodejs\node_modules\npm\node_modules\which\which.js:69:16)
gyp ERR! stack     at E (C:\Program Files\nodejs\node_modules\npm\node_modules\which\which.js:81:29)
gyp ERR! stack     at C:\Program Files\nodejs\node_modules\npm\node_modules\which\which.js:90:16
gyp ERR! stack     at C:\Program Files\nodejs\node_modules\npm\node_modules\which\node_modules\isexe\index.js:44:5
gyp ERR! stack     at C:\Program Files\nodejs\node_modules\npm\node_modules\which\node_modules\isexe\windows.js:29:5
gyp ERR! stack     at FSReqWrap.oncomplete (fs.js:123:15)
gyp ERR! System Windows_NT 10.0.10240
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\user\DemoApp2\node_modules\bufferutil
gyp ERR! node -v v6.3.1
gyp ERR! node-gyp -v v3.3.1
gyp ERR! not ok
npm WARN install:bufferutil@1.2.1 bufferutil@1.2.1 install: `node-gyp rebuild`
npm WARN install:bufferutil@1.2.1 Exit status 1

utf-8-validate@1.2.1 install C:\Users\user\DemoApp2\node_modules\utf-8-validate
node-gyp rebuild

所以我按照以下步骤来解决问题:

  1. 首先从以下位置下载并安装Microsoft Build Tools 2013: http://www.microsoft.com/en-us/download/details.aspx?id=40760和 按照建议运行npm config set msvs_version 2013 --global catalint。
  2. 删除.npm-gyp
  3. 下的文件夹C:\Users\user
  4. 执行npm install -g fs --save-dev
  5. 将下载的fs文件夹从C:\Users\user\AppData\Roaming\npm\node_modules复制到$nodehome\node_modules\npm\node_modules(注意:在我的情况下为C:\Program Files\nodejs\node_modules\npm\node_modules
  6. 执行npm install --msvs_version=2013 node-gyp rebuild
  7. 完成上述步骤后,我停止了构建错误。

答案 1 :(得分:3)

我使用了多个修复程序来尝试解决这个问题。我的版本是:Nodejs 0.12.4(64位),Git 2.5.3,npm 2.10.1,Windows 7和Visual Studio 2013.在我尝试此命令之前没有任何工作:

npm install -g node-gyp

然而,下次我尝试这样做时,我收到了同样的错误。使用

npm install -g --msvs_version=2013 node-gyp rebuild

似乎始终如一。

我希望这可以帮助某些人,因为我已经看到很多问题试图在Windows中使用它。

答案 2 :(得分:1)

您只需下载构建工具

即可

Microsoft Build Tools 2013:http://www.microsoft.com/en-us/download/details.aspx?id=40760

运行cmd以设置全局标志以使用2013版本:

npm config set msvs_version 2013 --global

之后,一切都应该恢复正常,你的npm install / node-gyp rebuild将会正常工作