ImageMagick and OS X Lion trouble

前端 未结 13 1184
时光取名叫无心
时光取名叫无心 2020-12-04 06:55

[edit] I was troubleshooting problems with my development environment when I noticed one of my problems was the dependency on ImageMagick, since it\'s a vit

13条回答
  •  旧时难觅i
    2020-12-04 07:43

    I could fix the ImageMagick problem by installing corresponding package from cactuslab site.

    Then by setting the PATH variables in terminal:

    export MAGICK_HOME="/usr/local/ImageMagick/"
    export PATH="$MAGICK_HOME/bin:$PATH"
    export DYLD_LIBRARY_PATH="$MAGICK_HOME/lib/"
    

提交回复
热议问题