5

我已经通过 npm 安装了 nodejs 和模块 couchbase。couchbase 也安装了,我可以通过浏览器访问后端。

相同的 server.js 文件确实适用于 Windows。

我已经安装了 python 2.7。我错过了什么吗?

我收到错误:

marcel@servermarcel:~/game$ nodejs server.js

/home/marcel/game/node_modules/couchbase/lib/binding.js:156
  throw new Error('Failed to locate couchnode native binding' +
        ^
Error: Failed to locate couchnode native binding (maybe check builderror.log!)
    at Object.<anonymous> (/home/marcel/game/node_modules/couchbase/lib/binding.js:156:9)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.require (module.js:364:17)
    at require (module.js:380:17)
    at Object.<anonymous> (/home/marcel/game/node_modules/couchbase/lib/couchbase.js:3:15)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)

当我查看 builderror.log 时,我看到:

$all to 'node -e "require('nan')"' returned exit status 1.le trying to load binding.gyp

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.$
gyp ERR! stack     at ChildProcess.EventEmitter.emit (events.js:98:17)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (child_process.js:797$
gyp ERR! System Linux 3.13.0-36-generic
gyp ERR! command "nodejs" "/usr/bin/node-gyp" "rebuild"
gyp ERR! cwd /home/marcel/game/node_modules/couchbase
gyp ERR! node -v v0.10.25
gyp ERR! node-gyp -v v0.10.10
gyp ERR! not ok
4

2 回答 2

5

我有一个类似的问题。原来couchbase试图运行

node -e "require(\'nan\')"

但是在通过 apt-get 安装节点的 Ubuntu 14.04 上,它是nodejs. 我把它改成

nodejs -e "require(\'nan\')"

node_modules/couchbase/binding.gyp文件中(靠近底部),然后运行npm rebuild(从我的项目目录中)并且它起作用了。

于 2014-10-23T05:17:39.087 回答
0

我遇到了同样的错误,但是上面提到的 node -e -> nodejs -e 替换并没有解决问题。在对 //node_modules/couchbase/builderror.log 进行更多调查后,预期的 python 版本是 >2.5 和 <3.0(我有一个 windows 框)。所以卸载了python 3.4.x并安装了2.7.9。这为我解决了问题!

于 2015-05-10T17:06:56.743 回答