Cannot find module 'bcrypt'

前端 未结 30 3222
轻奢々
轻奢々 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:45

    You need to update the g++ compiler version in your linux system. To update the compiler just run the commands below:

    sudo add-apt-repository ppa:ubuntu-toolchain-r/test
    
    sudo apt-get update
    
    sudo apt-get install gcc-4.9 g++-4.9
    
    sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9
    
    
    npm install bcrypt --save
    

提交回复
热议问题