使用plt.close('all')时python shell重新启动

时间:2017-06-12 07:28:10

标签: python shell matplotlib

我在python中使用matploitlib进行交互式图形绘制,但是当我直接或使用plt.close('all')关闭所有数字时,shell会重新启动。例如:

>>> import matplotlib.pyplot as plt
>>> plt.figure()
<matplotlib.figure.Figure object at 0x0000000003732828>
>>> plt.figure()
<matplotlib.figure.Figure object at 0x00000000037327B8>
>>> plt.close('all')

=============================== RESTART: Shell ===============================
>>> 

我该怎么办?

0 个答案:

没有答案