For the third time I reinstalled Mac OS X Mavericks on one of my minis that I use for my Santa projects. I had to reinstall as I had installed wordpress as a test. Wordpress worked but it wrecked all my normal goodies I use with the apache server.
I installed Yosemite on a second partition - more on this later.
Thus I had to reinstall imagemagick. Here are my install instructions.Your install may be different. I installed it like this:
1) I first install x11. Get x11 from here as recommended by apple and install.
http://xquartz.macosforge.org/landing/
2) Make sure you have Xcode installed and the command tools for Xcode also installed
xcode-select -p
if you dont
xcode-select --install
and follow the install instructions if appropriate
3) Next get homebrew by doing this:
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
tested it with these terminal commands
brew doctor
brew --version
Next I install using homebrew
brew install imagemagick --with-x11
4) I had my imagemagick install folder from before so I just used the same version (ImageMagick-6.8.7-1), already tarred. I reinstalled imagemagick with the commands below:
cd ImageMagick-6.8.7-1
./configure -with-perl
make
sudo make install
and it "magickally" worked.
I installed Yosemite on a second partition - more on this later.
Thus I had to reinstall imagemagick. Here are my install instructions.Your install may be different. I installed it like this:
1) I first install x11. Get x11 from here as recommended by apple and install.
http://xquartz.macosforge.org/landing/
2) Make sure you have Xcode installed and the command tools for Xcode also installed
xcode-select -p
if you dont
xcode-select --install
and follow the install instructions if appropriate
3) Next get homebrew by doing this:
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"
tested it with these terminal commands
brew doctor
brew --version
Next I install using homebrew
brew install imagemagick --with-x11
4) I had my imagemagick install folder from before so I just used the same version (ImageMagick-6.8.7-1), already tarred. I reinstalled imagemagick with the commands below:
cd ImageMagick-6.8.7-1
./configure -with-perl
make
sudo make install
and it "magickally" worked.