Skip to content

Instantly share code, notes, and snippets.

View djorlando24's full-sized avatar

Daniel Duke djorlando24

View GitHub Profile
@tomekwojcik
tomekwojcik / pythonmagick_osx.md
Created May 23, 2012 22:45
PythonMagick on OS X

Installing PythonMagick on OS X

  1. brew install boost - will take a lot of time and make your Mac hot
  2. brew install --with-magick-plus-plus imagemagick
  3. cd <path_to_PythonMagick_source>
  4. ./configure --with-boost=<path_to_boost_root>
  5. make
  6. make install
  7. python -c "import PythonMagick"