I've installed Imagemagick and wand however I get this error message when trying to start my django server:
ImportError: MagickWand shared library not found.
You probably had not installed ImageMagick library.
Try to install:
brew install freetype imagemagick
so I perform brew install freetype imagemagick
and then it responds with:
Warning: freetype 2.9.1 is already installed and up-to-date
To reinstall 2.9.1, run `brew reinstall freetype`
Warning: imagemagick 7.0.8-2 is already installed and up-to-date
To reinstall 7.0.8-2, run `brew reinstall imagemagick`
so I perform brew reinstall imagemagick
and then it returns the original error:
ImportError: MagickWand shared library not found.
You probably had not installed ImageMagick library.
Try to install:
brew install freetype imagemagick
and this cycle continues. Any idea what the problem is?