ImageMagick and OS X Lion trouble

前端 未结 13 1150
时光取名叫无心
时光取名叫无心 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条回答
  •  醉梦人生
    2020-12-04 07:36

    I tried most of the solutions above and they didn't work. Here's how I fixed my problem:

    brew install imagemagick;
    brew install freetype;
    cd /usr/X11/lib/;    
    sudo mv libfreetype.6.dylib libfreetype.6.dylib.orig;
    sudo ln -s /usr/local/opt/freetype/lib/libfreetype.6.dylib libfreetype.6.dylib
    

    Tested on OS X 10.7.2

提交回复
热议问题