在OSX 10.10.5上使用npm install获取这些错误:
build error
gyp ERR! stack Error: `make` failed with exit code: 69
gyp ERR! stack at ChildProcess.onExit (/usr/local/lib/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 Darwin 14.5.0
gyp ERR! command "/usr/local/Cellar/node/4.1.1/bin/node" "/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /node_modules/fsevents
gyp ERR! node -v v4.1.1
gyp ERR! node-gyp -v v3.0.1
gyp ERR! not ok
npm WARN optional dep failed, continuing fsevents@0.3.8
答案 0 :(得分:1)
这将通过安装Xcode 7来解决。只需在Xcode上运行更新,神奇地说,一切都可以再次运行。
答案 1 :(得分:1)
对我来说不幸的是,安装Xcode 7并没有解决它。我不得不从节点4.2降级到0.12.7。此时,Mean.js仅支持节点0.10.x. (注意Node从0.12.7跳到4.0。)
我使用 n 来管理Node版本。 安装 n
$ npm install -g n
然后通过 n
安装Node 0.12.7$ n 0.12.7
在终端输入n以选择节点版本。
$ n
使用箭头选择版本并按Enter键。
然后尝试
$ yo meanjs
这篇SO帖子详细解释了 how to change to an older version of node.js.