ubuntu下安装matplotlib


安装 matplotlib

因为 matplotlib 的依赖关系比较多(依赖关系是指一个软件需要安装其他一些软件包后才能使用,举个例子:A依赖B,说明安装B后才能使用A),

依赖关系包括:

numpy tornado pyparsing freetye png

因此,在命令行一次输入如下命令

sudo easy_install numpy
sudo easy_install tornado
sudo easy_install pyparsing
sudo apt-get install libfreetype6
sudo apt-get install libpng12-dev

​sudo easy_install matplotlib

测试安装成功与否

from pylab import *
t = arange(0.0, 2.0, 0.01)
s = sin(2*pi*t)
plot(t,s,linewidth = 1.0)

xlabel('time (s)')
ylabel('voltage (mV)')
title('About as simple as it gets, folks')
grid(True)
show()

显示出一个正弦函数。


你可能感兴趣的:(ubuntu)