Heroku: Running imagemagick with paperclip

Viewed 17074

I have installed image magick on my mac os x computer and now I want to deploy it to heroku. I've installed the the paperclip plugin on heroku but I get this error when uploading an image:

Paperclip::CommandNotFoundError

I had this error before when I didn't have imagemagick instaledl on my computer before but now that I want to deploy it, how do I get image magick to work on heroku?

3 Answers

Try to remove the Paperclip.options[:command_path] = "/path/to/" when deploying to heroku.

This solved the issue for me.

Related