Can't install imagemagick with brew on Mac OS X mavericks

后端 未结 7 2083
星月不相逢
星月不相逢 2021-02-02 07:54

I am using Homebrew v0.9.5 on my Mac OS X version 10.9.4

When I run the command: `brew install imagemagick, this error occurred.

$ brew install imagemagi         


        
相关标签:
7条回答
  • 2021-02-02 08:48

    For me it was upgrading to El Capitan. I found the simplest solution was to force remove homebrew:

    sudo ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
    

    then to re-install it:

    sudo /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    

    then install imageMajick:

    brew install ImageMagick
    

    Depending on your setup you may not want to sudo. For me, its fine. Enjoy a snack while you manipulate images.

    0 讨论(0)
提交回复
热议问题