I cannot seem to find any instructions on how to install PythonMagick on a Mac. I've tried the instructions given on this link https://gist.github.com/2778301, but am getting following error:
"No package 'MagickCore' found"
Please help?
I cannot seem to find any instructions on how to install PythonMagick on a Mac. I've tried the instructions given on this link https://gist.github.com/2778301, but am getting following error:
"No package 'MagickCore' found"
Please help?
Having googled around a bit, it appears that you may need to install the ImageMagick package of which "MagickCore" is a component. It looks like you can download an installer for the Mac here: http://cactuslab.com/imagemagick/.
If you've already installed ImageMagick, you'll likely need to set a couple environmental variables to point to the installation.
You'll need to include additional information about the error message (just post the full error message) and your Python version for more help.
Have you installed boost-python and boost-python-devel? If not, you can use yum to install them. When you have done so, open ~/.bash_profile
and add:
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
export PKG_CONFIG_PATH
Close it and source .bash_profile
(or start a new bash
).