【问题标题】:mean.js installation error on npm installnpm install 上的 mean.js 安装错误
【发布时间】:2025-12-26 02:25:07
【问题描述】:

我尝试按照https://github.com/meanjs/mean 中的安装步骤构建平均堆栈

我从 git 克隆代码并运行命令 npm install

并在最后得到以下错误。

npm ERR! Windows_NT 10.0.10240
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\..\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js" "install"
npm ERR! node v4.1.1
npm ERR! npm  v3.3.4
npm ERR! code ELIFECYCLE

npm ERR! bufferutil@1.1.0 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the bufferutil@1.1.0 install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the bufferutil package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild
npm ERR! You can get their info via:
npm ERR!     npm owner ls bufferutil
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     C:\Git_projects\meanjs\npm-debug.log

C:\Git_projects\meanjs>

【问题讨论】:

    标签: node.js npm mean-stack meanjs


    【解决方案1】:

    您运行的是 Windows 系统,而 Windows 上的 node-gyp 需要 PythonMicrosoft Visual Studio C++ 2013。根据您的设置,您可能还需要安装 Windows 7 64 位 SDK

    请参阅node-gyp docs 了解更多信息。

    【讨论】: