Matplotlib绘图窗口是黑色的

时间:2017-06-17 18:17:45

标签: python matplotlib

我最近开始研究python和matplotlib。我面临的问题是我总是得到一个黑色的窗口作为情节输出。

请参阅下面的简单代码。

import numpy as np
import matplotlib.pyplot as plt
import pylab


x = np.arange(0, 5, 0.1)
y = np.sin(x)

#plot the x and y and you are supposed to see a sine curve
plt.plot(x, y)

pylab.show()

enter image description here

我从matplotlib页面执行相同的结果执行代码示例。 有没有人知道它来自何处以及如何克服这个问题?

我正在使用操作系统Linx Mint。

1 个答案:

答案 0 :(得分:1)

我在python shell中执行代码并且它工作,问题是在python编辑器中执行代码。我和两位不同的编辑合作过。

enter image description here

祝你好运

罗伯特