我希望matplotlib「show」命令在顯示圖時返回命令行 。大多數其他劇情包,如R,這樣做。 但pylab掛起,直到劇情窗口關閉。例如:pylab matplotlib「show」等到窗口關閉
import pylab
x = pylab.arange(0, 10, 0.1)
y = pylab.sin(x)
pylab.plot(x,y, 'ro-')
pylab.show() # Python hangs here until the plot window is closed
我希望能夠在執行命令行查詢時查看圖。我正在使用python 2.6.6運行Debian squeeze。 我的〜/ .matplotlib/matplotlibrc包含
backend : GTKAgg
謝謝!
嘗試使用[IPython](http://ipython.org/) – 2012-03-17 21:36:22
您的意思是'ipython -pylab'來獲得多線程。 – 2012-03-17 21:39:45