2015-09-25 121 views
0

收到這些錯誤使用NPM上OSX 10.10.5安裝:節點GYP重建生成錯誤「讓」失敗NPM安裝

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 [email protected] 

回答

1

這將解決通過安裝的Xcode 7. Xcode和剛剛運行更新,神奇地,一切都再次運作。

+0

我有同樣的問題,它得到了通過接受術語的Xcode的協議固定

$ yo meanjs 

這SO後詳細解釋。 – forgetaboutme

1

不幸的是,安裝Xcode 7並沒有解決它。我必須從節點4.2降級到0.12.7。此時,Mean.js僅支持節點0.10.x. (請注意,節點從0.12.7跳到4.0。)

我使用n來管理節點版本。 要安裝ň

$ npm install -g n 

然後通過ň

$ n 0.12.7 

安裝節點0.12.7。輸入n在終端選擇的節點版本。

$ n 

使用箭頭選擇版本,然後按回車。

enter image description here

然後嘗試 how to change to an older version of node.js.

+0

更改爲0.12.7是唯一對我有用的東西。 – trudesign