标签: python-2.7 osx-lion
我无法在matplotlib上运行python 2.7。例如:
matplotlib
python 2.7
from pylab import * x = arange(-10.0, 10.0, 0.1) y = sin(x) plot(x,y)
能够跑。
但是
from pylab import * x = arange(-10.0, 10.0, 0.1) y = sin(x) plot(x,y) show()
不是。 show()函数无法运行。
show()
有什么想法吗?