Re: [Matplotlib-users] I get a warning when running code with ipython, but not with python

2011-11-15 Thread Alejandro Weinstein
On Mon, Nov 14, 2011 at 7:11 AM, Michael Droettboom md...@stsci.edu wrote: This looks like a bug for the IPython folks.  If you make a file containing only import gtk and %run that file, one gets the same error. It is a bug of IPython 0.11. The problem is solved in 0.12. See

Re: [Matplotlib-users] I get a warning when running code with ipython, but not with python

2011-11-14 Thread Michael Droettboom
This looks like a bug for the IPython folks. If you make a file containing only import gtk and %run that file, one gets the same error. Mike On 11/13/2011 10:30 PM, Alejandro Weinstein wrote: Hi: I just installed matplolib from source code, and Ipython using pip, in Ubuntu 11.10. When I

Re: [Matplotlib-users] I get a warning when running code with ipython, but not with python

2011-11-14 Thread Fernando Perez
On Mon, Nov 14, 2011 at 6:11 AM, Michael Droettboom md...@stsci.edu wrote: This looks like a bug for the IPython folks.  If you make a file containing only import gtk and %run that file, one gets the same error. Mmmh, I don't get the problem on ubuntu 10.10. I'll try to check later on an

[Matplotlib-users] I get a warning when running code with ipython, but not with python

2011-11-13 Thread Alejandro Weinstein
Hi: I just installed matplolib from source code, and Ipython using pip, in Ubuntu 11.10. When I run this code ### foo.py import matplotlib.pyplot as plt plt.plot([1,2,3,4]) plt.ylabel('some numbers') plt.show() ## in ipython, I get the following