Pystacia在OS X上找不到MagickWand

时间:2013-02-28 21:53:44

标签: python macos imagemagick

由于一些奇怪的原因,Pystacia无法在OS X上找到MagickWand.h。

我试图调整$ DYLD_LIBRARY_PATH和$ C_INCLUDE_PATH,但没有运气。

我有图像启动并运行。

$ mdfind MagickWand.h 
/usr/local/Cellar/imagemagick/6.8.010/share/doc/ImageMagick/www/api/MagickWand/struct__MagickWand.html
/usr/local/Cellar/imagemagick/6.8.0-10/include/ImageMagick/wand/MagickWand.h

并继续收到此错误:

>>> import pystacia
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Python/2.7/site-packages/pystacia/__init__.py", line 193, in <module>
init()
File "/Library/Python/2.7/site-packages/pystacia/__init__.py", line 28, in init
raise TinyException('Could not find or load magickWand')
pystacia.util.TinyException: Could not find or load magickWand

我进一步了解了pystacia对MagickWand.h的看法:

from ctypes.util import find_library
resolved_path = find_library('MagickWand')
if not resolved_path:
    raise PystaciaException('Could not find or load magickWand')

仍然没有幸运。

1 个答案:

答案 0 :(得分:0)

期待来自bitbucket的最新pystacia代码我意识到pip的版本已经很老了(从2011年开始),最新代码的安装解决了我的问题 - 因为我可以负担得起运行未发布的代码。

我还在bitbucket上输入了一个问题,所以维护者发布了一个新的代码。