Wand==0.3.7, Python 3.4.3, OSX EI Capitan 10.11
when run from wand.image import Image
it throw errors:
ImportError: MagickWand shared library not found. You probably had not installed ImageMagick library. Try to install: brew install freetype imagemagick
ok, first I try this:
brew install freetype imagemagick
, but
Warning: freetype-2.6_1 already installed Warning: imagemagick-6.9.2-4 already installed
what's the fuck?
run convert -h
dyld: Library not loaded: /usr/local/lib/libfreetype.6.dylib Referenced from: /usr/local/bin/convert Reason: Incompatible library version: convert requires version 19.0.0 or later, but libfreetype.6.dylib provides version 16.0.0 Trace/BPT trap: 5
Ok, Incompatible library version, I got you!
brew uninstall freetype imagemagick
brew install freetype
brew link --overwrite freetype
brew install imagemagick
Turned out to be an issue with incompatible dependencies.
brew uninstall imagemagick@7 --force
(force may or may not have been necessary here)brew install imagemagick@6 && brew link imagemagick
This fixed my issue