views:

646

answers:

2

Image Paperclip::CommandNotFoundError

I am getting this error. Installed Image magick, rmagic both specified path in developement.rb

Paperclip.options[:command_path] = "/opt/local/bin" 

Using Snow Leapord

+2  A: 

check logs to see which command failed. probably it looks for other complementary executables not present in your custom path. for example paperclip also needs 'identify' command, provided with imagemagick. so be sure to have all executables you need.

apeacox
+1  A: 

Try putting the Paperclip.options[:command_path] in a file in config/intializers

chap