我最近开始研究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()
我从matplotlib页面执行相同的结果执行代码示例。 有没有人知道它来自何处以及如何克服这个问题?
我正在使用操作系统Linx Mint。