node-gyp, grpc でインストールに失敗している。
こんな感じのエラー
$ npm -g install embark
....
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
....
Reference のように 0.8 でインストールするとOK
$ git clone git://github.com/creationix/nvm.git ~/.nvm
$ source ~/.nvm/nvm.sh
$ nvm ls
$ nvm ls-remote
$ nvm install 0.8
$ nvm use --delete-prefix v0.8.28
$ npm -g install embark
success install to embark
Reference