Reputation: 2341
I have a Profile model, which has attached file picture, using Paperclip. I am able to save the attachment picture normally, but when I use :styles for paperclip, I get the following error message:
Profile picture Paperclip::CommandNotFoundError
I do not know what's wrong or missing in my configurations. Thanks.
Upvotes: 0
Views: 99
Reputation: 6857
Make sure that that you install ImageMagick package & rmagick gem.
Upvotes: 1
Reputation: 801
Sounds like you need to install ImageMagick. :styles are postprocessed by the ImageMagick command line tool.
Upvotes: 1