While running a meteor application using command meteor --settings settings.json getting following errors:
ERROR in Missing binding /home/bhimesh/Desktop/Sol/node_modules/node-sass/vendor/linux-x64-11/binding.node
Node Sass could not find a binding for your current environment: Linux 64-bit with Node 0.10.x
Found bindings for the following environments:
- Linux 64-bit with Node.js 4.x
This usually happens because your environment has changed since running `npm install`.
Run `npm rebuild node-sass` to build the binding for your current environment.
@ ./src/client/containers/user/UserContainer.scss 4:14-356 13:2-17:4 14:20-362
ERROR in Missing binding /home/bhimesh/Desktop/Sol/node_modules/node-sass/vendor/linux-x64-11/binding.node
Node Sass could not find a binding for your current environment: Linux 64-bit with Node 0.10.x
Found bindings for the following environments:
- Linux 64-bit with Node.js 4.x
npm -v): 2.15.9node -v): 4.5.0node -p process.versions): { http_parser: '2.7.0',
node: '4.5.0',
v8: '4.5.103.37',
uv: '1.9.1',
zlib: '1.2.8',
ares: '1.10.1-DEV',
icu: '56.1',
modules: '46',
openssl: '1.0.2h' }
node -p process.platform): linuxnode -p process.arch): x64node -p "require('node-sass').info"): node-sass 3.10.1 (Wrapper) [JavaScript]
libsass 3.3.6 (Sass Compiler) [C/C++]
npm ls node-sass):Node Sass could not find a binding for your current environment: Linux 64-bit with Node 0.10.x
Found bindings for the following environments:
- Linux 64-bit with Node.js 4.x
This usually happens because your environment has changed since running
npm install.
Runnpm rebuild node-sassto build the binding for your current environment.
Did you try following the instructions in the error message? npm rebuild node-sass
@xzyfer I should have mentioned it earlier. I have tried all obvious ways including reinstalling, rebuilding and resetting, removing node module nd reinstalling. Nothing seems to work.
Try doing a fresh install until https://github.com/sass/node-sass/issues/1766 lands.
rm -rf node_modules
npm install
Thanks @xzyfer your tip helped me!
it works for me
quite the obvious solution, somehow it didn't occur to me. Thanks either way!
Worked for me as well. Thanks.
Most helpful comment
Try doing a fresh install until https://github.com/sass/node-sass/issues/1766 lands.