pythonやblenderで作った画像を表示しようと。。。
1 2 3 4 5 6 7 8 9 10 |
$ display ./pafx1.png Version: ImageMagick 6.9.1-3 Q16 x86_64 2015-05-29 http://www.imagemagick.org Copyright: Copyright (C) 1999-2015 ImageMagick Studio LLC License: http://www.imagemagick.org/script/license.php Features: DPC Modules Delegates (built-in): bzlib freetype jng jpeg ltdl lzma png tiff xml zlib ... ... display: delegate library support not built-in `' (X11) @ error/display.c/DisplayImageCommand/1893. |
XQuartz はインストール済みだしなぁ。
ググってみたところ、ImageMagickのビルドオプションが必要らしい。
Merberickまで、そんな事したっけな?
まぁ、いいや再ビルドも簡単だし。(本当HomeBrewは素晴しい)
ありゃ?
1 2 3 4 5 6 7 8 9 10 11 12 13 |
$ brew reinstall imagemagick --with-x11 ==> Reinstalling imagemagick with --with-x11 ==> Downloading http://www.imagemagick.org/download/releases/ImageMagick-6.9.1-3 curl: (22) The requested URL returned error: 404 Not Found Trying a mirror... ==> Downloading https://downloads.sourceforge.net/project/imagemagick/6.9.1-sour curl: (22) The requested URL returned error: 404 Not Found Error: Failed to download resource "imagemagick" Download failed: https://downloads.sourceforge.net/project/imagemagick/6.9.1-sources/ImageMagick-6.9.1-3.tar.xz $ |
なんか、同じバージョンがもう公開されてないんだな。
brew update して、もう一度。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
$ brew update Error: uninitialized constant Formulary::HOMEBREW_CORE_FORMULA_REGEX Please report this bug: https://git.io/brew-troubleshooting /usr/local/Library/Homebrew/formulary.rb:214:in `loader_for' /usr/local/Library/Homebrew/formulary.rb:174:in `factory' /usr/local/Library/Homebrew/cmd/update.rb:173:in `block in report' /usr/local/Library/Homebrew/cmd/update.rb:159:in `each_line' /usr/local/Library/Homebrew/cmd/update.rb:159:in `report' /usr/local/Library/Homebrew/cmd/update.rb:24:in `update' /usr/local/Library/brew.rb:140:in `<main>' $ brew reinstall imagemagick --with-x11 ==> Reinstalling imagemagick with --with-x11 ==> Installing dependencies for imagemagick: libpng, libtiff, freetype ==> Installing imagemagick dependency: libpng .... .... .... |
なんか根本的風なところで怒られてるけど、
気にしない。
いろいろ画像周りのライブラリがアップデートした後、
無事に画像が表示されるようになったよ。