Lion (10.7) Not supporting Convert(1). Dylib error

依然范特西╮ 提交于 2019-11-30 07:52:29
Callmeed

I was getting this error as well–with a homebrew install of ImageMagick. Along the same lines as Pascal, I fixed it with

  1. Install XCode 4.1 (from the App Store)
  2. In Xcode, go to Xcode > Preferences... > Downloads tab > click Install next to Command Line Tools
  3. Uninstall ImageMagick with brew uninstall imagemagick
  4. Update homebrew with brew update
  5. Install latest homebrew with brew install imagemagick
  6. Run brew doctor and delete any of the *.la and *.a files listed if step 4 fails on make install

I got the same error and what solved the problem for me was:

  1. Install the latest XCode version from the Mac Appstore
  2. Install ImageMagick using Macports (sudo port install imagemagick)

Both steps took a while, but in the end ImageMagick worked fine again.

Rimian

I installed xcode but had some issue with macports. Bummer!

I copied the libclparser.dylib file over from an old backup of 10.6, changed the permissions to match the other files in that folder and it worked!

Also see here: https://stackoverflow.com/questions/6674666/installing-imagemagick-leads-to-weird-error-involving-opencl

Edit:

I found this, which may be useful: http://cactuslab.com/imagemagick/
Also, the file is here: http://www.workdreamer.com/uploads/libclparser.dylib

Reinstalling it even with brew instead of macports didn't work for me. Copying it did.

Try the following command:

brew doctor

to diagnose the common problems.

One of it could be removing DYLD_FALLBACK_LIBRARY_PATH variable from your ~/.profile

Or you have to re-install libtool by:

brew reinstall libtool --universal && brew unlink libtool && brew link libtool
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!