0

尝试安装 strongloop 后,它引发了一些警告和错误。

用于安装的命令是:npm install -g strongloop

错误:

c:\users\yoel\.node-gyp\4.2.4\include\node\v8.h(336): error C2988: unrecognizable template declaration/definition [C:\Users\Yoel\AppData\Roaming\npm\node_modules\strongloop\node_modules\heapdump\build\addon.vcxproj]
c:\users\yoel\.node-gyp\4.2.4\include\node\v8.h(336): error C2059: syntax error : 'using' [C:\Users\Yoel\AppData\Roaming\npm\node_modules\strongloop\node_modules\heapdump\build\addon.vcxproj]
c:\users\yoel\.node-gyp\4.2.4\include\node\v8.h(576): error C2061: syntax error : identifier 'WeakCallbackType' [C:\Users\Yoel\AppData\Roaming\npm\node_modules\strongloop\node_mododules\heapdump\build\addon.vcxproj]
c:\users\yoel\.node-gyp\4.2.4\include\node\v8.h(915): error C2989: 'v8::HandleScope' : class template has already been declared as a non-class template [C:\Users\Yoel\AppData\Roaming\npm\node_modules\strongloop\node_modules\heapdump\build\addon.vcxproj]
.
.
. 

等等... [许多相同的错误和其他一些错误]

这是错误日志表格builderror.log

gyp ERR! build error 
gyp ERR! stack Error: `msbuild` failed with exit code: 1
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_process.js:200: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:\Users\Yoel\AppData\Roaming\npm\node_modules\strongloop\node_modules\node-inspector\node_modules\ws
gyp ERR! node -v v4.2.4
gyp ERR! node-gyp -v v3.0.3
gyp ERR! not ok 

我正在使用节点 4.2.4、Python 2.7.11 和 NPM 2.14.12

我尝试过的事情:

  • 重新安装 gyp
  • 重新安装 Visual Studio 2012
  • 使用 Visual Studio 2015 安装 strongloop
  • 使用 Visual Studio 2013 安装 strongloop
  • 使用 Visual Studio 2010 安装 strongloop

有任何想法吗?其他人遇到过类似的问题吗?

注意:我可以运行 slc,但我无法知道一切是否正常。这不像是我可以忽略的警告。

4

1 回答 1

0

这已经解决了这个问题。

第 1 步:
将 node-gyp 重新安装到最新版本:npm install -g node-gyp

第 2 步:
再次运行 strongloop 安装,如下所示:npm install -g strongloop --msvs_version=2012

于 2016-01-22T00:50:25.360 回答