Im trying to run sudo npm install
in my project and I got the next error: Tried to download(404): https://github.com/kelektiv/node.bcrypt.js/releases/download/v1.0.3/bcrypt_lib-v1.0.3-node-v64-linux-x64.tar.gz node-pre-gyp ERR! Pre-built binaries not found for [email protected] and [email protected] (node-v64 ABI) (falling back to source compile with node-gyp) node-pre-gyp ERR! Tried to download(undefined): https://github.com/kelektiv/node.bcrypt.js/releases/download/v1.0.3/bcrypt_lib-v1.0.3-node-v64-linux-x64.tar.gz node-pre-gyp ERR! Pre-built binaries not found for [email protected] and [email protected] (node-v64 ABI) (falling back to source compile with node-gyp)
Im using 10.15.3 node version and 6.4.1 npm version.
How can I fix this error?
Remove the node modules file. Then install bcrypt
by manually using sudo npm i bcrypt --save
. Then run the command sudo npm i
.
If this is not working try it without sudo
command.
Collected from the Internet
Please contact [email protected] to delete if infringement.
Comments