我对magickwand和python以及Mac OX X有问题。
当我导入它时,我收到错误:
ImportError: MagickWand shared library not found. You probably had not
installed ImageMagick library. Try to install: brew install imagemagick
brew install imagemagick Warning: imagemagick-6.8.9-1 already installed
答案 0 :(得分:3)
所以,实际问题是:
如果未使用MacPorts安装Python,则还必须导出MAGICK_HOME路径。因为未使用MacPorts安装的Python没有查找/ opt / local,所以MacPorts包的默认路径前缀。
他们提供的解决方案是:
$ export MAGICK_HOME = / opt / local
答案 1 :(得分:3)
brew uninstall --force imagemagick
brew install imagemagick@6
echo 'export PATH="/usr/local/opt/imagemagick@6/bin:$PATH"' >> ~/.bash_profile
brew link imagemagick@6 --force
答案 2 :(得分:0)
基于Gowtham和jrjc的回答,以下是我如何使用自制软件使Wand python程序包工作的方法:
brew install imagemagick@6
echo 'export MAGICK_HOME=/usr/local/opt/imagemagick@6/' >> ~/.bash_profile
这里有几件事要注意: