RedHat Linux 上の python でグラフを書くために matplotlib をインストールしました。
Windwows 版は こちら Windows に Python と matplotlib をインストール
インストール
ソースからインストールします。
matplotlib のインストールの前に事前に以下のインストールが必要です。
- numpy
- import numpy でエラーが出なければOK
- freetype
- matplotlib のコンパイル中にエラーが出たら( ft2build.h がないとか )
- http://ftp.twaren.net/Unix/NonGNU/freetype/ からダウンロードしてインストール
- ./configure / make / make install
- libpng
- matplotlib のコンパイル中にエラーが出たら( png.h がないとか )
- http://sourceforge.net/projects/libpng/files/ からダウンロードしてインストール
- linux の場合は tar.gz 版をダウンロード。zip は windows 向け。
- ./configure / make / make install
- matplotlib
#define png_infopp_NULL (png_infopp)NULL #define int_p_NULL (int*)NULL
-
- python setup.py install
動作確認
サーバで動かしているので一度ファイルに落としている。
from pylab import * matplotlib.pyplot.plot([1,2,3]) matplotlib.pyplot.savefig('test2.png')
参考ページ
http://matplotlib.sourceforge.net/users/installing.html
http://stackoverflow.com/questions/2442335/libpng-boostgil-png-infopp-null-not-found