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
On High Sierra I did this:
No need to uninstall imagemagick 7. However, you do need to set the variable somewhere like ~/.bash_profile or in your service's startup script.
Just imagemagick@7 does not work, even with the variable set to point to it. At least for me.