使用npm安装bcrypt时出错


90

由于遇到以下错误,因此无法在计算机上bcrypt使用进行安装npm。我一直在排除此问题,但运气不佳。您能否建议任何步骤来诊断或解决问题,以便我可以npm install bcrypt成功运行?

Someones-Macbook:node_modules Cody$ npm install bcrypt
npm WARN package.json grunt-contrib-htmlmin@0.1.3 No README data
|
> bcrypt@0.7.7 install /Applications/MAMP/htdocs/richintime/ultimate-seed/node_modules/bcrypt
> node-gyp rebuild

child_process: customFds option is deprecated, use stdio instead.
  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
../src/bcrypt_node.cc:118:18: error: no member named 'Dispose' in 'v8::Persistent<v8::Function, v8::NonCopyablePersistentTraits<v8::Function>
      >'
        callback.Dispose();
        ~~~~~~~~ ^
../src/bcrypt_node.cc:202:19: error: unknown type name 'uv_work_t'
void GenSaltAsync(uv_work_t* req) {
                  ^
../src/bcrypt_node.cc:219:24: error: unknown type name 'uv_work_t'
void GenSaltAsyncAfter(uv_work_t* req) {
                       ^
../src/bcrypt_node.cc:220:17: error: calling a protected constructor of class 'v8::HandleScope'
    HandleScope scope;
                ^
/Users/Cody/.node-gyp/0.12.0/deps/v8/include/v8.h:816:13: note: declared protected here
  V8_INLINE HandleScope() {}
            ^
../src/bcrypt_node.cc:228:44: error: no member named 'New' in 'v8::String'
        argv[0] = Exception::Error(String::New(baton->error.c_str()));
                                   ~~~~~~~~^
../src/bcrypt_node.cc:229:19: error: no matching function for call to 'Undefined'
        argv[1] = Undefined();
                  ^~~~~~~~~
/Users/Cody/.node-gyp/0.12.0/deps/v8/include/v8.h:305:28: note: candidate function not viable: requires single argument 'isolate', but no
      arguments were provided
  friend Handle<Primitive> Undefined(Isolate* isolate);
                           ^
../src/bcrypt_node.cc:232:19: error: no matching function for call to 'Undefined'
        argv[0] = Undefined();
                  ^~~~~~~~~
/Users/Cody/.node-gyp/0.12.0/deps/v8/include/v8.h:305:28: note: candidate function not viable: requires single argument 'isolate', but no
      arguments were provided
  friend Handle<Primitive> Undefined(Isolate* isolate);
                           ^
../src/bcrypt_node.cc:238:20: error: member reference type 'v8::Persistent<v8::Function>' is not a pointer; maybe you meant to use '.'?
    baton->callback->Call(Context::GetCurrent()->Global(), 2, argv);
    ~~~~~~~~~~~~~~~^~
                   .
../src/bcrypt_node.cc:238:22: error: no member named 'Call' in 'v8::Persistent<v8::Function, v8::NonCopyablePersistentTraits<v8::Function> >'
    baton->callback->Call(Context::GetCurrent()->Global(), 2, argv);
    ~~~~~~~~~~~~~~~  ^
../src/bcrypt_node.cc:238:36: error: no member named 'GetCurrent' in 'v8::Context'
    baton->callback->Call(Context::GetCurrent()->Global(), 2, argv);
                          ~~~~~~~~~^
../src/bcrypt_node.cc:246:34: error: unknown type name 'Arguments'; did you mean 'v8::internal::Arguments'?
Handle<Value> GenerateSalt(const Arguments &args) {
                                 ^~~~~~~~~
                                 v8::internal::Arguments
/Users/Cody/.node-gyp/0.12.0/deps/v8/include/v8.h:127:7: note: 'v8::internal::Arguments' declared here
class Arguments;
      ^
../src/bcrypt_node.cc:247:17: error: calling a protected constructor of class 'v8::HandleScope'
    HandleScope scope;
                ^
/Users/Cody/.node-gyp/0.12.0/deps/v8/include/v8.h:816:13: note: declared protected here
  V8_INLINE HandleScope() {}
            ^
../src/bcrypt_node.cc:249:32: error: type 'const v8::internal::Arguments' does not provide a subscript operator
    const ssize_t rounds = args[0]->Int32Value();
                           ~~~~^~
../src/bcrypt_node.cc:250:30: error: type 'const v8::internal::Arguments' does not provide a subscript operator
    const int rand_len = args[1]->Int32Value();
                         ~~~~^~
../src/bcrypt_node.cc:251:58: error: type 'const v8::internal::Arguments' does not provide a subscript operator
    Local<Function> callback = Local<Function>::Cast(args[2]);
                                                     ~~~~^~
../src/bcrypt_node.cc:255:45: error: 'New' is a private member of 'v8::PersistentBase<v8::Function>'
    baton->callback = Persistent<Function>::New(callback);
                                            ^
/Users/Cody/.node-gyp/0.12.0/deps/v8/include/v8.h:572:23: note: declared private here
  V8_INLINE static T* New(Isolate* isolate, T* that);
                      ^
../src/bcrypt_node.cc:255:57: error: too few arguments to function call, expected 2, have 1
    baton->callback = Persistent<Function>::New(callback);
                      ~~~~~~~~~~~~~~~~~~~~~~~~~         ^
/Users/Cody/.node-gyp/0.12.0/deps/v8/include/v8.h:572:3: note: 'New' declared here
  V8_INLINE static T* New(Isolate* isolate, T* that);
  ^
/Users/Cody/.node-gyp/0.12.0/deps/v8/include/v8config.h:289:20: note: expanded from macro 'V8_INLINE'
# define V8_INLINE inline __attribute__((always_inline))
                   ^
../src/bcrypt_node.cc:259:5: error: unknown type name 'uv_work_t'
    uv_work_t* req = new uv_work_t;
    ^
../src/bcrypt_node.cc:259:26: error: unknown type name 'uv_work_t'
    uv_work_t* req = new uv_work_t;
                         ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
make: *** [Release/obj.target/bcrypt_lib/src/bcrypt_node.o] Error 1
gyp ERR! build error 
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack     at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:267:23)
gyp ERR! stack     at ChildProcess.emit (events.js:110:17)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (child_process.js:1067:12)
gyp ERR! System Darwin 13.4.0
gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /Applications/MAMP/htdocs/richintime/ultimate-seed/node_modules/bcrypt
gyp ERR! node -v v0.12.0
gyp ERR! node-gyp -v v1.0.2
gyp ERR! not ok 
npm ERR! Darwin 13.4.0
npm ERR! argv "node" "/usr/local/bin/npm" "install" "bcrypt"
npm ERR! node v0.12.0
npm ERR! npm  v2.7.1
npm ERR! code ELIFECYCLE

npm ERR! bcrypt@0.7.7 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the bcrypt@0.7.7 install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the bcrypt package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild

Answers:


211

简单的解决方案是从“ bcrypt” npm模块切换到bycryptjsbcrypt-nodejs。它是完全相同的API,但是纯JS,因此无需处理本机附加组件。

npm install --save bcryptjs && npm uninstall --save bcrypt

然后将您的require调用更改为“ bcryptjs”,但是所有其他代码都可以保持不变。

从长远来看,我怀疑目前bcrypt可能尚未为节点v0.12.0做好准备,但如果没有,它最终将被更新并准备好。


1
比python版本慢2.7倍
rocketspacer

1
bcryptjs为我工作。但是,bcrypt-nodejs没有。
科尔比考克斯

4
2019年-似乎不再支持bcrypt-nodejs
Matt

1
它是一个解决办法,而不是解决办法。如果您无法切换到bcrypt的节点版本,请安装node-gyp(尝试npm i bcrypt npde-gyp --force),然后尝试npm i。它应该正确构建。
Caio Wilson

1
我已经安装了bcrypt-nodejs,尽管它已被弃用,然后将其删除并再次安装了bcrypt。这样,我成功安装了bcrypt,并且工作正常。
prettydev

34

对于Windows,请安装以下模块

npm install -g node-gyp
npm install --g --production windows-build-tools

然后尝试安装

npm install bcrypt

这个家伙给出了一个完美的答案。其他事物已弃用。
Gaurang Joshi

在完成所有这些操作之后,还应该将python可执行文件添加到环境变量PATH中,以便安装程序找到它,似乎它需要它来正确执行安装。
拉基布尔·哈克

您可以通过右键单击Powershell并选择“以管理员
身份

另外,请确保关闭任何其他终端(因为默认情况下我不使用Powershell),以便windows-build-tools完成安装。谢谢您的回答btw
3Dos

在Windows上以管理员身份运行
Prathamesh更多2009年

10

在此命令上:

npm install --g --production windows-build-tools

您可能必须在Windows机器上以管理员身份在Powershell中运行此程序。

您可以通过右键单击Powershell并选择“以管理员身份运行”来执行此操作


5

可接受的解决方案有效,但bcryptjs的速度比python和c ++版本慢。

如果您仍然希望在bcrypt中插入bcryptjs的工作解决方案,请在下面的命令中进行操作,但是它们也可能有问题。

✔️ npm install -g node-gyp
 npm install --g --production windows-build-tools

在Windows中,第二个命令将尝试与python一起安装Visual Studio,因此会出现问题。因为我们为什么要安装Visual Studio,这需要很多时间。并且也阻碍了python的安装。如果您忘记以管理员身份运行这些命令,则它们将安装在C:\ Users \ User.windows-build-tools上,由于节点将在C:\或C:\ Program Files \中搜索python,因此它们将进一步无法使用。因此,在某些情况下此命令会增加您的复杂性。

因此,对您而言,最好的办法是为所有用户手动✔️python安装,并且无需将python添加到环境路径。并只运行第一个命令,即

✔️ npm install -g node-gyp

现在您准备安装bcrypt

npm install bcrypt


3

我只是运行以下命令,然后尝试安装,此方法有效:

npm install node-pre-gyp -g

1

我在服务器端(aws ubuntu 16.04)遇到相同的问题。

我尝试多次删除node_module / bcrypt sudo rm -rf node_module/bcrypt,然后通过各种方式一次又一次地重新安装它,但仍然面临相同的问题。

我用nvm检查了节点版本,它也显示稳定(v10.11.0)。

最后,我尝试了。

sudo npm cache clean -f
sudo npm install -g n
sudo n stable

它为我工作。


1

如果您在Windows上,请以管理员身份运行powershell并使用以下命令。

npm install --g --production windows-build-tools

然后使用安装bcrypt

npm install --save bcrypt

1

我也有同样的问题。以下命令对我有帮助。

npm rebuild

然后

npm install bcrypt

1

错误原因:节点可能无法在系统上找到Python路径

步骤:1 以管理员身份运行Rum命令提示符 步骤2 安装软件包

  npm install --global --production windows-build-tools

可能需要一些时间,请耐心等待

步骤3现在安装

npm install node-gyp

最后一步 现在您可以开始了

npm install bcrypt



0

我已经安装了bcrypt-nodejs,尽管它已被弃用,然后将其删除并再次安装了bcrypt。这样,我成功安装了bcrypt,并且工作正常。

yarn add bcrypt-nodejs
yarn remove bcrypt-nodejs
yarn add bcrypt 



-1

有同样的问题。更新npm并重试(通常是npm install -g npm)。它为我解决了这个问题。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.