2017-03-06 80 views
1

我一直在尝试在Ubuntu上安装ZeroRPC。我已经安装了ZeroMQ,但在安装ZeroRPC时出现了这些错误。我基本上是绑定在node.js后台运行一个python脚本,它发送JSON对象并从python代码接收JSON。此外,Python代码必须始终在后端运行。未能在Ubuntu上安装ZeroRPC

gyp ERR! configure error 
gyp ERR! stack Error: `gyp` failed with exit code: 1 
gyp ERR! stack  at ChildProcess.onCpExit (/usr/share/node-gyp/lib/configure.js:354:16) 
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 Linux 4.4.0-21-generic 
gyp ERR! command "/usr/bin/nodejs" "/usr/bin/node-gyp" "rebuild" 
gyp ERR! cwd /home/user/node_modules/msgpack 
gyp ERR! node -v v4.2.6 
gyp ERR! node-gyp -v v3.0.3 
gyp ERR! not ok 

/home/user 
`-- [email protected] 

npm WARN enoent ENOENT: no such file or directory, open '/home/user/package.json' 
npm WARN user No description 
npm WARN user No repository field. 
npm WARN user No README data 
npm WARN user No license field. 
npm ERR! Linux 4.4.0-21-generic 
npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install" "zerorpc" 
npm ERR! node v4.2.6 
npm ERR! npm v3.5.2 
npm ERR! code ELIFECYCLE 

npm ERR! [email protected] install: `node-gyp rebuild` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] install script 'node-gyp rebuild'. 
npm ERR! Make sure you have the latest version of node.js and npm installed. 
npm ERR! If you do, this is most likely a problem with the msgpack 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 information on how to open an issue for this project with: 
npm ERR!  npm bugs msgpack 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR!  npm owner ls msgpack 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR!  /home/user/npm-debug.log 

npm ERR!  npm bugs msgpack 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR!  npm owner ls msgpack 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR!  /home/user/npm-debug.log 

未能安装并卡住它。

回答

0

错误是关于未能构建msgpack而不是关于zerorpc。请尝试跟随错误消息告诉你要做的事情。这将帮助您成功构建msgpack。

0

我刚刚经历过同样的问题。

我发现了另一个答案(node-gyp rebuild error while installing node modules),帮助我成功构建了我的项目。

清楚你的包管理器缓存

sudo npm cache clean -f 

安装节点版本管理

sudo npm install -g n 

更新至V4.3.0(没有调查这个版本的意义,但它解决了我的问题,看起来相同上面的那个)

sudo n 4.3.0 

安装你的库

sudo npm install zerorpc