I am trying to use wand on python on my Mac Monterrey. When I run the command on python from wand.image import Image as Img I get the error ImportError: MagickWand shared library not found. You probably had not installed ImageMagick library.
This is what I had done, following diverse guidelines. Any suggestions as to how to make wand find imagemagick?
I installed imagemagick via homebrew. I can confirm that I have that the following items exist in my computer: /opt/homebrew/Cellar/imagemagick and /opt/homebrew/Cellar/imagemagick@6.
I also did a brew unlink imagemagick && brew link imagemagick
I added the following line to the end of my .zshrc:
export MAGICK_HOME="/opt/homebrew/Cellar/imagemagick"
I installed Wand via pip install in my local environment