Skip to content Skip to sidebar Skip to footer

Problems Detecting Pythonmagick After Install Mac Osx

I followed the instructions at https://gist.github.com/2778301 but when I try to do import PythonMagick I get the error message: Traceback (most recent call last): File '

Solution 1:

There's an answer to your question on the link you provided:

This can be fixed by changing the first line of __init__.py in PythonMagick, which is usually found in the site-packages directory, for instance,

python2.7/site-packages/PythonMagick

Try changing:

from . import _PythonMagick

to

import _PythonMagick

Post a Comment for "Problems Detecting Pythonmagick After Install Mac Osx"