kisna
kisna

Reputation: 55

Fatal error: spawn ENOENT node.js and grunt

Hi for responsive images i downloaded project from

https://github.com/andismith/grunt-responsive-images

i installed all those things what they have mentioned...

whenever i say grunt it saying fallowing error:

Running "jshint:all" (jshint) task
  >> 3 files lint free.

  Running "clean:tests" (clean) task
 Cleaning "tmp"...OK

 Running "responsive_images:default_options" (responsive_images) task
 Fatal error: spawn ENOENT

why i am getting this error pla tellme...

Thnk you.

Upvotes: 2

Views: 7259

Answers (2)

Naga
Naga

Reputation: 11594

I experienced exactly the same error as you yesterday, and I found that I had installed wrong version of node.js eventually.

I'm using 64-bit Windows,but I had installed 32bit version Node.js. I could install it and it seems working normally, but when I tried to compile existing project, the error message had been shown.

But after I re-install 64-bit version of Node.js, all error had been solved.

If you are using 64bit OS, better to check the version is correct or not.

Upvotes: 0

Kyle Robinson Young
Kyle Robinson Young

Reputation: 13762

It is likely because you don't have imagemagick installed: http://www.imagemagick.org/script/index.php

See the FAQ on that plugin: https://github.com/andismith/grunt-responsive-images#faq

Upvotes: 2

Related Questions