Problem plotting with matplotlib on ActivePython

Hi everyone,

I just installed matplotlib (after suffering from Numpy, Scipy, Atlas,
Lapack...), and I have this weird problem.

When I plot the first time I have no problem, the plot comes out just fine
and the plot window is interactive.
After I close the plotting window and try to plot again I can see the graph
but the plot window doesn't response (not interactive).

When I import pylab I get this warning:

import pylab

Warning (from warnings module):
  File
"/home/yoavv/ActivePython-2.6_64/lib/python2.6/site-packages/pytz/tzinfo.py",
line 5
    from sets import Set
DeprecationWarning: the sets module is deprecated

pylab.plot(range(100))

[<matplotlib.lines.Line2D object at 0x2b921d0>]

p = _
pylab.show()

pylab.plot(range(200))

[<matplotlib.lines.Line2D object at 0x3113510>]

- Here no response.

I am using:
- ActivePython-2.6
- matplotlib 0.98.5.3

I would appreciate any help,
Thanks,
voichek

···

--
View this message in context: http://www.nabble.com/Problem-plotting-with-matplotlib-on-ActivePython-tp24374558p24374558.html
Sent from the matplotlib - users mailing list archive at Nabble.com.

Take a look at

http://matplotlib.sourceforge.net/users/shell.html

After you have digested the ideas there and make sure your interactive
and backend settings are proper for ActivePython, feel free to get
back to us with more questions. Be sure to read the links
"Customizing matplotlib" and "What is a backend" referred to from the
page above.

JDH

···

On Tue, Jul 7, 2009 at 9:53 AM, Voichek<voichek@...287...> wrote:

Hi everyone,

I just installed matplotlib (after suffering from Numpy, Scipy, Atlas,
Lapack...), and I have this weird problem.

When I plot the first time I have no problem, the plot comes out just fine
and the plot window is interactive.
After I close the plotting window and try to plot again I can see the graph
but the plot window doesn't response (not interactive).

When I import pylab I get this warning:

import pylab

Warning (from warnings module):
File
"/home/yoavv/ActivePython-2.6_64/lib/python2.6/site-packages/pytz/tzinfo.py",
line 5
from sets import Set
DeprecationWarning: the sets module is deprecated

pylab.plot(range(100))

[<matplotlib.lines.Line2D object at 0x2b921d0>]

p = _
pylab.show()

pylab.plot(range(200))

[<matplotlib.lines.Line2D object at 0x3113510>]

- Here no response.

I am using:
- ActivePython-2.6
- matplotlib 0.98.5.3

I would appreciate any help,