Wand 在 python 64 位和 imagemagick 64 位下不工作:找不到共享库
Wand does not work under python 64 bit and imagemagick 64 bit: cannot find shared libraries
我是 运行 python 2.7 64 位 windows 并且已经安装了 imagemagick 64 位(可用的最新版本)以及必要的 headers 和 env 变量,如中所述导游。不幸的是,我可以通过 pip 安装 wand,但是当我尝试使用 wand 时,我得到了这个错误:
>>> from wand.image import Image
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\site-packages\wand\image.py", line 20, in <module>
from .api import MagickPixelPacket, libc, libmagick, library
File "C:\Python27\lib\site-packages\wand\api.py", line 205, in <module>
'Try to install:\n ' + msg)
ImportError: MagickWand shared library not found.
You probably had not installed ImageMagick library.
Try to install:
http://docs.wand-py.org/en/latest/guide/install.html#install-imagemagick-on-wi
ndows
有人遇到过这个问题吗?提前致谢。
安装版本:ImageMagick-6.9.8-9-Q16-x64-dll.exe
Wand 目前还不支持最新版本。
我是 运行 python 2.7 64 位 windows 并且已经安装了 imagemagick 64 位(可用的最新版本)以及必要的 headers 和 env 变量,如中所述导游。不幸的是,我可以通过 pip 安装 wand,但是当我尝试使用 wand 时,我得到了这个错误:
>>> from wand.image import Image
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\site-packages\wand\image.py", line 20, in <module>
from .api import MagickPixelPacket, libc, libmagick, library
File "C:\Python27\lib\site-packages\wand\api.py", line 205, in <module>
'Try to install:\n ' + msg)
ImportError: MagickWand shared library not found.
You probably had not installed ImageMagick library.
Try to install:
http://docs.wand-py.org/en/latest/guide/install.html#install-imagemagick-on-wi
ndows
有人遇到过这个问题吗?提前致谢。
安装版本:ImageMagick-6.9.8-9-Q16-x64-dll.exe
Wand 目前还不支持最新版本。