2011-11-27 56 views
1

我想在Ubuntu 11.10上安裝now.js(在wubi上運行,如果有的話)。我已經下載並安裝了node,npm和socket.io,但是sudo npm install now因某些原因失敗。我嘗試了使用和不使用sudo,嘗試在全局安裝它,同樣的錯誤。 Make安裝得很好......是否與node-proxy軟件包有關?對於它的價值,嘗試npm install node-proxy會產生類似的錯誤。nowjs /節點代理無法安裝在Ubuntu 11.10

節點版本0.6.2
NPM版本1.0.106
的Ubuntu 11.10(用五筆窗口)

日誌讀取,當我嘗試現在安裝:

npm WARN [email protected] package.json: bugs['web'] should probably be bugs['url'] 

> [email protected] install /home/my_name/node_modules/now/node_modules/node-proxy 
> make 

BUILDING: C++ Component 
/bin/sh: node-waf: not found 
cp: cannot stat `src/build/*/node-proxy.node': No such file or directory 
make: *** [all] Error 1 
npm ERR! error installing [email protected] Error: [email protected] install: `make` 
npm ERR! error installing [email protected] `sh "-c" "make"` failed with 2 
npm ERR! error installing [email protected]  at ChildProcess. (/usr/lib/node_modules/npm/lib/utils/exec.js:49:20) 
npm ERR! error installing [email protected]  at ChildProcess.emit (events.js:70:17) 
npm ERR! error installing [email protected]  at maybeExit (child_process.js:359:16) 
npm ERR! error installing [email protected]  at Process.onexit (child_process.js:395:5) 
npm ERR! error installing [email protected] Error: [email protected] install: `make` 
npm ERR! error installing [email protected] `sh "-c" "make"` failed with 2 
npm ERR! error installing [email protected]  at ChildProcess. (/usr/lib/node_modules/npm/lib/utils/exec.js:49:20) 
npm ERR! error installing [email protected]  at ChildProcess.emit (events.js:70:17) 
npm ERR! error installing [email protected]  at maybeExit (child_process.js:359:16) 
npm ERR! error installing [email protected]  at Process.onexit (child_process.js:395:5) 
npm ERR! [email protected] install: `make` 
npm ERR! `sh "-c" "make"` failed with 2 
npm ERR! 
npm ERR! Failed at the [email protected] install script. 
npm ERR! This is most likely a problem with the node-proxy package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  make 
npm ERR! You can get their info via: 
npm ERR!  npm owner ls node-proxy 
npm ERR! There is likely additional logging output above. 
npm ERR! 
npm ERR! System Linux 3.0.0-13-generic 
npm ERR! command "node" "/usr/bin/npm" "install" "now" 
npm ERR! cwd /home/my_name 
npm ERR! node -v v0.6.2 
npm ERR! npm -v 1.0.106 
npm ERR! code ELIFECYCLE 
npm ERR! 
npm ERR! Additional logging details can be found in: 
npm ERR!  /home/my_name/npm-debug.log 
npm not ok

回答

1

出現問題就是node-waf缺失。

node-waf是一個包含在允許編譯二進制模塊的節點中的工具,例如節點代理。

您可以通過在終端中輸入node-waf來查看node-waf是否可用,以查看是否可以找到該命令。如果不是,則需要重新安裝節點(再次運行make install)以確保節點waf可用。

+0

哦,哇,完美的作品。謝謝! –