10

I'm trying to upload stuff to amazon s3 with the imager module. I keep getting the error message that says,

events.js:72
    throw er; // Unhandled 'error' event
              ^
Error: spawn ENOENT
    at errnoException (child_process.js:980:11)
    at Process.ChildProcess._handle.onexit (child_process.js:771:34)

I've already installed imagemagick on my computer, but it keeps saying it's unlinked, could this be the problem? I also tried linking using brew link imagemagick, but it's unable to link for some reason. I'm using OSx. Any fixes?

Thanks.

hexacyanide
  • 88,222
  • 31
  • 159
  • 162
jensiepoo
  • 571
  • 3
  • 9
  • 26
  • ENOENT usually points to not found file. Make sure your paths are relative and correct. – moka Jul 30 '13 at 15:33

2 Answers2

7

Please make sure the ImageMagick exe is included as part of PATH environment variable.

Chandu
  • 4,581
  • 2
  • 17
  • 13
3

Simply works on Ubuntu:

sudo apt-get install imagemagick
Manwal
  • 23,450
  • 12
  • 63
  • 93