使用来自pylab的ion()会导致matplotlib挂起

时间:2012-10-10 20:39:10

标签: python matplotlib ipython

我正在使用Enthought的32位python发行版为mac。

如果我尝试:

$ ipython
In [1] from pylab import *
In [2] ion()
In [3] plot([1,2],[1,2])

图形已创建,但python在尝试绘图时冻结。

我做错了什么还是这个错误?

通过在ipython --pylab中运行进行绘图工作正常

1 个答案:

答案 0 :(得分:0)

我正在使用' WXAgg'后端,我切换到' macosx'这似乎解决了问题

In [1]: import matplotlib

In [2]: matplotlib.get_backend()
Out[2]: 'WXAgg'

In [3]: matplotlib.use('macosx')

In [4]: matplotlib.get_backend()
Out[4]: 'MacOSX'

In [5]: from pylab import *

In [6]: ion()

In [7]: plot([1,2]) # now works fine