本文介绍了imagemagick identify给出“dyld:未加载的库:/usr/local/lib/libtiff.3.dylib"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

brew安装imagemagick和brew安装ghostscript on osx
当我运行识别我得到:

after brew install imagemagick and brew install ghostscript on osxwhen i run identify i get:

$ identify
dyld: Library not loaded: /usr/local/lib/libtiff.3.dylib
  Referenced from: /usr/local/bin/identify
  Reason: image not found
Trace/BPT trap: 5


推荐答案

这个修复它

ln -s /usr/local/Cellar/libtiff/3.9.5/lib/libtiff.3.dylib /usr/local/lib/libtiff.3.dylib

感谢此链接上的rlaraujo

thanks to rlaraujo on this link https://github.com/mxcl/homebrew/issues/12099

这篇关于imagemagick identify给出“dyld:未加载的库:/usr/local/lib/libtiff.3.dylib"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 09:30