2017-06-17 107 views
3

我最近開始學習python和matplotlib。我面對的問題是,我總是得到一個黑色的窗口作爲情節輸出。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。

+0

對不起!操作系統Linx Mint – Robert

+0

實際上,不鼓勵使用pylab,所以試試plt.show()來代替它,也許它會有所幫助? http://matplotlib.org/faq/usage_faq.html#matplotlib-pyplot-and-pylab-how-are-they-related – omdv

+0

同樣的結果,黑色的窗口。 – Robert

回答

1

我在python shell中執行代碼,它的工作原理,問題出現在python編輯器中執行代碼。我曾與兩位不同的編輯工作。

enter image description here

問候

羅伯特