While trying to deploy meteor, I install node fiber by:
$ cd bundle/server
and then installing fiber
$ npm install fibers
It seems to install but with this message:
`linux-x64-v8-3.14` exists; testing
Binary is fine; exiting
[email protected] node_modules/fibers
However, while deploying the code using:
node bundle/main.js
I get this error:
throw new Error('`'+ modPath+ '.node` is missing. Try reinstalling `node-fibe
~/main_repo/bundle/server/node_modules/fibers/bin/linux-x64-v8-3.20/fibers.node` is missing. Try reinstalling `node-fibers`?
I can see that the versions are different for linux-x64-v8-3.xx. I'm using Ubuntu 13.04
Node version is v0.11.3 NPM version is 1.2.18
You need to uninstall fibers first to remove the binary that's not compatible with your server's platform.
cd bundle/server
npm uninstall fibers
npm install fibers
You only need to do this if your server is using a different platform, i.e if your development pc is not ubuntu.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With