Node-sass: Node Sass Could not find binding for your currrent environment linux 64-bit with Node 0.10.x

Created on 29 Oct 2016  路  7Comments  路  Source: sass/node-sass

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 version (npm -v): 2.15.9
  • Node version (node -v): 4.5.0
  • Node Process (node -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 Platform (node -p process.platform): linux
  • Node architecture (node -p process.arch): x64
  • node-sass version (node -p "require('node-sass').info"):
node-sass   3.10.1  (Wrapper)   [JavaScript]
libsass     3.3.6   (Sass Compiler) [C/C++]

  • npm node-sass versions (npm ls node-sass):

[email protected]

Most helpful comment

Try doing a fresh install until https://github.com/sass/node-sass/issues/1766 lands.

rm -rf node_modules
npm install

All 7 comments

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.

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.

Was this page helpful?
0 / 5 - 0 ratings