spyder不会显示matplotlib窗口

时间:2016-01-26 15:36:57

标签: python matplotlib spyder

我正在使用spyder来运行以下脚本

import matplotlib.pyplot as plt

fig = plt.figure()
ax=fig.add_subplot(111)
ax.plot([2,1,3])
plt.ion()
plt.show()

input('something')

问题是,matplotlib窗口出现在脚本的末尾(在我输入“某事物”之后)

当我在终端中执行此脚本时,窗口出现,我可以同时输入“某事物” - 这就是我需要的。

有人知道导致这个问题的原因是什么吗?

0 个答案:

没有答案