13
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Mountain Lion にアップグレードしたら homebrew が動かなくなった場合の対処

Posted at

Mountain Lion にアップグレード後、homebrew でインストールしたツールが動かなくなっていた。そもそも gcc が入っていなかったので、

  1. App Store から XCode の最新版をインストール
  2. XCodeを開き、Preferences から "Downloads" メニューを開き、Command Line Tools をインストールする
    command line tool
  3. sudo brew update

この時点でいくつかのツールは動くようになった。しかし、ImageMagic を使おうとすると、

~/Downloads% convert --resize 32x32 Icon.png icon2.png
dyld: Library not loaded: /usr/lib/libltdl.7.dylib
  Referenced from: /usr/local/bin/convert
  Reason: image not found

というエラーメッセージが出る。
http://stackoverflow.com/questions/7412208/imagemagick-and-os-x-lion-trouble
を見ると libtool を入れろとあるので、

sudo brew install libtool

を実行。インストール後再度convertコマンドを叩くと、今度は

error

というメッセージが。「続ける」を選ぶとブラウザを開きXQuartzのページへ行くので、XQuartz-2.7.2.dmg をダウンロード、インストール。

再起動後、ようやく ImageMagick も動くようになった。

13
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?