osx - How do I get ImageMagick installed -
i decided download source , compile locally , run sudo make install
.
however, when try run command 'which imagemagick' don't see path returned command line.
i trying imagemagick , paperclip (for rails 3) play nicely, without being able install - paperclip doesn't seem work. error keep getting rails, when following has_attached_file :image, :styles => { :thumb => "64x64" }
image paperclip::commandnotfounderror
the output sudo make install large, posted on github here: https://gist.github.com/723339
imagemagick doesn't provide binary named imagemagick
instead has 12 binarys named: animate
, compare
, composite
, conjure
, convert
, display
, identify
, import
, mogrify
, montage
, stream
which install log installed, important one: convert
installed @ /usr/local/bin/convert
convert
1 paperclip uses , expect on path
line 61 of https://github.com/thoughtbot/paperclip/blob/master/lib/paperclip/thumbnail.rb reads
replacing convert
/usr/local/bin/convert
@ line fix it
Comments
Post a Comment