When installing bcrypt in windows, shows an error that doesn't found the downloads for 1.0.3:
meteor npm install --save bcrypt
[email protected] install C:\TEST\node_modules\bcrypt
node-pre-gyp install --fallback-to-build
node-pre-gyp ERR! Tried to download(502): https://github.com/kelektiv/node.bcrypt.js/releases/download/v1.0.3/bcrypt_lib-v1.0.3-node-v46-win32-ia32.tar.gz
node-pre-gyp ERR! Pre-built binaries not found for [email protected] and [email protected] (node-v46 ABI) (falling back to source compile with node-gyp)
Can you add to the downloads for the 1.0.3 release please?
We use Appveyor to add compiled binaries for Windows automatically. And currently Appveyor is failing. I'll try to trigger another build later.
@agathver any update here?
Yesterday I tried to install bcrypt through npm in windows, and failed as well. Are there any workarounds for this?
Thanks in advance.
@xjose97x I have to use v1.0.2 in the mean time.
npm install [email protected]
You can force fixed version in package.json by removing ^ prefix.
"dependencies": {
"bcrypt": "1.0.2"
}
Would be nice if you could trigger the build again...
I have the same issue with the "v48" for "v1.0.3". I'm "forced" to downgrade to "v1.0.2" too
Sadly this took me hours to realise because i was tired :(
The latest appveyor build has pushed all binaries for all node versions, this issue should be fixed now.
I'm also having an issue with this.
@justbill2020 It seems you have issues with your NodeJS installation. May be the PATH isn't configured properly
Most helpful comment
@xjose97x I have to use
v1.0.2in the mean time.You can force fixed version in
package.jsonby removing^prefix.