LoginSignup
12
12

More than 5 years have passed since last update.

Homebrewでのblockdiagのインストールが簡単になっていた

Last updated at Posted at 2014-11-06

経緯

blockdiag使いたいんだけど、homebrewでのインストールはfreetype2の対応がめんどいなーと思って試していたら、freetype使って簡単にインストールできるようになっていたのでまとめておく。

方法

$ brew install freetype
$ brew install python --framework
$ pip install blockdiag

これだけ。

一応、ちゃんと動作するか確認しておく。

$ vim test.diag
blockdiag {
   A -> B -> C -> D;
   A -> E -> F -> G;
}
$ blockdiag test.diag
$ open test.png

test.png

enjoy!

12
12
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
12
12