python plot不会在ubuntu上显示一个窗口

时间:2013-01-25 08:58:45

标签: python python-2.7 matplotlib

当我运行这个简单的代码时:

import matplotlib.pyplot as plt
plt.plot([1,2,3,4])
plt.ylabel('some numbers')
plt.show()

我没有得到任何窗口。我试图将其保存到文件中并且它可以工作,但我想在屏幕上显示带有绘图的窗口。

我正在使用python版本2.7.3。我正在研究Ubuntu。

如何显示窗口/情节?

1 个答案:

答案 0 :(得分:0)

你安装了numpy吗? matplotlib需要numpy 1.4或更高版本。您可以从here

获取安装步骤