0

出于某种奇怪的原因,Pystacia 无法在 OS X 上找到 MagickWand.h。

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

我已经启动并运行了 imagemagick。

$ 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')

还是不走运。

4

1 回答 1

0

查看来自 bitbucket 的最新pystacia代码,我意识到 pip 的版本非常旧(从 2011 年开始),并且从最新代码安装解决了我的问题——因为我可以负担运行未发布的代码。

我还在 bitbucket 上输入了一个问题,因此维护者发布了一个新的代码版本。

于 2013-02-28T21:53:43.973 回答