Cannot find module 'bcrypt'

前端 未结 30 2983
轻奢々
轻奢々 2020-12-24 01:54

I am getting error Cannot find module \'bcrypt\' in nodejs application

I have tried to install it using npm install bcrypt but still gett

30条回答
  •  有刺的猬
    2020-12-24 02:48

    In my case, npm rebuild alone didn't solved it. I also had to:

    $ npm install -g node-gyp
    $ sudo apt-get update
    $ sudo apt-get install build-essential
    $ npm rebuild
    

    npm rebuild was trying to run make.

提交回复
热议问题