Code Day's Night

ichikawayのブログ

AWS Linuxでpython2.7に切り替えてmatplotlibをインストール

メモ

AWS Linuxでは、python2.6が利用されているため、それを2.7に切り替える。 python2.6のpipでは古すぎてmatplotlibがインストールできないため。

alternatives --display python
alternatives --set python /usr/bin/python2.7
python -V

pipをインストールし、matplotlibをインストールする

yum install python27-devel python27-pip
easy_install pip
pip install --upgrade pip

pip install matplotlib numpy

最後に、グラフを描画してhoge.pngに保存するスクリプトを動かして、実際にmatplotlibが動くか確認。

import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(1,1,1)

x = [0,1,2,3,4,5]
y = [10,20,30,40,50,60]

ax.plot(x,y)
plt.savefig('./hoge.png')