Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

imagemagick identify gives "dyld: Library not loaded: /usr/local/lib/libtiff.3.dylib"

after brew install imagemagick and brew install ghostscript on osx when 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
like image 341
linojon Avatar asked Dec 10 '12 05:12

linojon


1 Answers

this fixes it

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

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

like image 77
linojon Avatar answered Oct 22 '22 19:10

linojon