Re: [Matplotlib-users] plt.ion() doesn't enable interactive mode when ran as script on mac osx 10.8.5

2014-09-21 Thread Eric Firing
On 2014/09/21, 6:07 AM, Petar Bakalov wrote: > Using python 2.7.5 and matplotlib 1.4.0 on mac OSX 10.8.5. > > The output of the following snippet: > > |import matplotlib.pyplotas plt > plt.ion() > print "Is interactive:?", plt.isinteractive() > | > > when ran from shell ($ python snippet.py) is

[Matplotlib-users] plt.ion() doesn't enable interactive mode when ran as script on mac osx 10.8.5

2014-09-21 Thread Petar Bakalov
Using python 2.7.5 and matplotlib 1.4.0 on mac OSX 10.8.5. The output of the following snippet: import matplotlib.pyplot as pltplt.ion()print "Is interactive:?", plt.isinteractive() when ran from shell ($ python snippet.py) is: Is interactive? : 0 i.e. interactive mode does not work. I think