Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After upgrading to OS X Lion (10.7) i no longer had ImageMagick available, i then tried installing again using MacPorts without success, i then installed from source, and the install wasn't very successfully i had convert and identify but it output error messages that i unfortunately dont have anymore, i by some strange reason decided to remove all of my MacPort libraries and started using Homebrew, i tried installing ImageMagick, it installs OK but when i try to use it throws this error

dyld: Library not loaded: /opt/local/lib/libltdl.7.dylib
  Referenced from: /usr/local/bin/convert
  Reason: Incompatible library version: convert requires version 11.0.0 or later, but libltdl.7.dylib provides version 10.0.0
Trace/BPT trap: 5

I read online but i have no clue on whats going on here, i found that libltdl is called libtool, and that i obviously need to upgrade it to a newer version, but i havent found any indication of how or where to find the source, or if this should be already be handled by homebrew and why it hasn't.

I tried installing ImageMagick again from source using this installer script https://github.com/masterkain/ImageMagick-sl but when i try to use convert it throws a similar error.

$ convert gnome.jpg -resize 50% gnome_.jpg
dyld: Library not loaded: /opt/local/lib/libltdl.7.dylib
  Referenced from: /usr/local/bin/convert
  Reason: Incompatible library version: convert requires version 11.0.0 or later, but libltdl.7.dylib provides version 10.0.0
Trace/BPT trap: 5

$ which convert
/usr/local/bin/convert

What can i do to solve my problem?

share|improve this question

9 Answers

up vote 12 down vote accepted

I also upgraded to Lion and lost ImageMagick, although i'm getting different errors.

i found a Lion distribution on imagemagick.org. not a big fan of the DYLD_LIBRARY_PATH environment variable but it works.

ok scratch that. i just downloaded the ImageMagick source and re-compiled:

cd /tmp
curl -OL ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
tar -xzf ImageMagick.tar.gz
cd ImageMagick-6.7.2-7/
./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --disable-openmp --with-gs-font-dir=/usr/local/share/ghostscript/fonts
make
sudo make install
share|improve this answer
Howdy I tried this on a fresh Mountain lion install and it fails at the configuration stage configure: error: libltdl is required for modules build. I am relatively new to compiling and installing binaries from source, can you provide a suggested best method to installing the required libltdl library? – Rider_X Nov 8 '12 at 16:18
I had originally used the install script mentioned by @rroche on my snow leopard install. After the Lion upgrade i was able to use the code above because i had all the library dependencies installed already. The above code will NOT work on a fresh install. – firien Nov 9 '12 at 18:30
the script mentioned by @23inhouse appears to work on mountain lion – firien Nov 9 '12 at 18:32
I ended up installing the command line tools from Xcode, which seems to install a relatively recent version of ImageMagick. – Rider_X Nov 12 '12 at 0:38

On 10.8 I solved this issue with:

brew install libtool --universal
brew link libtool

If you don't know what brew is, visit https://github.com/mxcl/homebrew and its wiki.

share|improve this answer
4  
Thanks, this worked for me on Mountain Lion. – recurser Jul 27 '12 at 1:18
8  
Don't forget to install xquartz.macosforge.org/landing as well. And you're good to go – Ayrton Jul 27 '12 at 9:14
worked for me on Mountain Lion as well. – Aldo Jul 27 '12 at 23:07
2  
Just brew install libtool appears to works just as well... Why the --universal and manual link call afterwards? – lhunath Feb 9 at 14:47
3  
This worked for me, though I had to do a brew link libtool --force since it was bitching about Keg-only installations. brew doctor also bitches about libtool. What's that about? – Drew Feb 17 at 12:25
show 6 more comments
brew uninstall imagemagick
brew install imagemagick --build-from-source

worked for me

share|improve this answer
This works. Fantastic! – Christian Varga Feb 7 at 12:05
this is not necessary just do a brew install libtool (since the precompiled imagemagick misses to download this dependency) – bernstein Feb 10 at 0:58
This worked for me too, thanks. even the brew install libtool was not working. – Steven_JP Mar 4 at 20:58
Right on spot ;) many thanks! – Erez Rabih Mar 14 at 8:45

For others looking and still having trouble, I used this:

https://github.com/maddox/magick-installer

share|improve this answer
thanks for pointing that out – rroche Mar 19 '12 at 17:31
This doesnt play as nice with homebrew, as linkingvia brew link is done. Manual links might/may/likely willl need to be done afterwards for complete access – chris Frisina Jan 12 at 19:00

The same problem might occur with OSX Mountain Lion (preview 4). I had to configure some parts separately because there are some library incompatibilities:

dyld: Library not loaded: /usr/local/lib/libjpeg.8.dylib
  Referenced from: /usr/local/bin/convert
  Reason: Incompatible library version: convert requires version 13.0.0 or later, but libjpeg.8.dylib provides version 9.0.0

I had to add --with-fontconfig=no, --with-lzma=no and use /opt/local/share/... instead of /usr/local/share/... for the ghostscript fonts:

cd /tmp
curl -OL ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
tar -xzf ImageMagick.tar.gz
cd ImageMagick-6.7.8-0/
./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --disable-openmp --with-fontconfig=no --with-gs-font-dir=/opt/local/share/ghostscript/fonts --with-lzma=no
make
sudo make install
share|improve this answer
1  
still not working with mountain lion :( – Petrogad Jul 25 '12 at 19:09

On 10.8, with brew, I solved this issue with:

brew install graphicsmagick

For the googlers: If you happened to have it installed with brew beforehand, you'll need to reinstall by running brew uninstall graphicsmagick before installing again. Easy.

share|improve this answer

On Mountain Lion OSX,

Even with the updated brew for imagemagick(which includes libtool), this error seemed to happen to me.

so i fixed it using the following commands

brew uninstall libtool
brew install libtool --universal
brew link libtool --force
share|improve this answer
why do we need --universal [?] – rogerdpack Apr 6 at 14:48
universal gives a single binary file which can be used for both 32bit and 64bit architectures. I think this is needed for Imagemagick to work. – arun15thmay Apr 12 at 10:48

I could fix the ImageMagick problem by installing corresponding package from here http://cactuslab.com/imagemagick/

and 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/"
share|improve this answer

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

share|improve this answer
maybe we should start comparing our brew installed libs – rroche Oct 8 '12 at 19:30
Here's the error message I was getting by the way: syskall.com/trouble-installing-imagemagick-on-os-x-1072 . Hope this fix works for someone else! – Olivier Lalonde Oct 9 '12 at 11:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.