Mac安装nodejs模块bcrypt失败,咋整?
发布于 2天前 作者 immatt2015 131 次浏览 来自 问答

Mac安装nodejs模块bcrypt失败,怎么处理呢? 通过npm没有任何错误,就是卡在那。 用cnpm安装报告错误,显示与包有关。。。。 有遇到过类似问题的吗?

5 回复

你卡在哪一步了?

$ npm install bcrypt
npm WARN package.json [email protected] No repository field.
\
> [email protected] install /Users/tester/node_modules/bcrypt
> node-gyp rebuild

  CXX(target) Release/obj.target/bcrypt_lib/src/blowfish.o
  CXX(target) Release/obj.target/bcrypt_lib/src/bcrypt.o
  CXX(target) Release/obj.target/bcrypt_lib/src/bcrypt_node.o
  SOLINK_MODULE(target) Release/bcrypt_lib.node
  SOLINK_MODULE(target) Release/bcrypt_lib.node: Finished
[email protected] ../node_modules/bcrypt
├── [email protected]
└── [email protected]

node-gyp rebuild 然后一直没下文。 用cnpm的话 直接返回提示bcrypt包错误。 你的系统是osx10.10.3吗

是 10.10.3. 你安装了xcode了吗?

安装bcrypt的时候,执行npm cache clean 然后npm i bcrypt 可以正常安装了。 但是为啥编译时间有点长呢?@leapon

回到顶部