Reputation: 93
I tried building a simple recipe app, however I can't manage to fix one bug:
I tried installing ImageMagick 6.9.1-0 for Mac OS X 10.5 – 10.10.
However my mac uses OS X EL CAPITAN 10.11.1 and couldn't manage to get it working.
I also read that it's not safe to use it anymore.
What would you suggest? Are there any alternatives?
Upvotes: 0
Views: 93
Reputation: 11823
Use Homebrew to install ImageMagick.
First install Homebrew. Open up a terminal window and run:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Then, ask it to install ImageMagic properly on your system:
brew install imagemagick
And you have a working copy of ImageMagic.
Upvotes: 1