谁能给个 mac 上安装 ImageMagick 的方案
curl -O ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz tar -zxf ImageMagick.tar.gz cd ImageMagick-*/ ./configure --prefix=/usr/local make sudo make install 我的系统是 10.7。这么安装很成功、方便,不过得最先装 xcode
3Q #3 楼 @keithorbit
安装后:
dyld: Library not loaded: /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libclparser.dylib Referenced from: /usr/bin/identify Reason: image not found
@suxu http://stackoverflow.com/questions/6764176/lion-10-7-not-supporting-convert1-dylib-error
很多时候我都是直接下载源码放到/Library/Cache/Homebrew 目录下面,然后再将 brew 安装文件里面 md5 注释,brew 在安装的时候就会从/Library/Cache/Homebrew 解包安装了
@suxu 不是这样的,你查一下/usr/local/Library/Forumla/下面,会有很多文件。里面会有 imageMagick.rb 文件,这个文件就是下载 URL,MD5 认证,编译安装的过程。
你可以直接在http://www.imagemagick.org/script/download.php 里面下载一个 tar 包放到/Library/Caches/Homebrew 里面,将 imagemagick.rb 文件里面的 sha256 一行注释,执行 brew install imagemagick,然后系统会提示包已存在在/Library/Caches/Homebrew 里面,会直接拿来编译安装的!