I was on a roller coaster trying to get ImageMagick to work on my Ubuntu host. I Whenever I try to load an image, I get the following error: /tmp/stream.1170.0 is not recognized by the ident command.
If I type 'which ident', I get: / usr / local / bin / ident
If I run '/ usr / local / bin / ident' or just 'identify', I get the following error: / usr / local / bin / ident: error loading shared libraries: libMagickCore.so.3: can not open shared file objects: no such file or directory
If I run '/ usr / bin / ident', ImageMagick will work fine. How can I set my path to where, when Paperclip runs the authentication command, it points to / usr / bin / ident? Thanks.
ps I tried to add this to paperclip.rb: Paperclip.options [: command_path] = '/ usr / bin' and Paperclip.options [: command_path] = '/ usr / local / bin'
source share