繁体   English   中英

bcrypt_lib.node:未定义的符号:node_module_register

[英]bcrypt_lib.node: undefined symbol: node_module_register

 Error: /home/george/Desktop/myProject/node_modules/bcrypt/build/Release/bcrypt_lib.node: undefined symbol: node_module_register
    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 bindings     (/home/george/Desktop/myProject/node_modules/bcrypt/node_modules/bindings/bindings.js:76:44)
    at Object.<anonymous> (/home/george/Desktop/myProject/node_modules/bcrypt/bcrypt.js:3:35)
    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)

这个错误的原因是什么?

  • 操作系统:Linux Mint 17.1
  • gcc版本4.8.2(Ubuntu 4.8.2-19ubuntu1)
  • Python 2.7.6
  • node-gyp@1.0.3
  • 节点0.12.2

我在哪里可以找到关于在linux上安装bcrypt以及我需要的系统工具的教程?

node_module_register内部API通过commit 76b9846添加到v0.11.11中的Node.js。

bcrypt模块是一个C ++插件,必须根据它们运行的​​相同版本的Node.js进行编译。

我最好的猜测是你编译它以便与Node.js v0.12.x一起使用但是试图使用v0.10.x运行它

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM