Re: [Matplotlib-users] cbook.report_memory IOError

2013-07-17 Thread Benjamin Root
I have a vague recollection of a similar problem faced by @dopplershift when he was updating the animation module to pipe a stream to a mencoder/ffmpeg process on certain Macs. Maybe this is the same problem? On Wed, Jul 17, 2013 at 9:18 AM, Michael Droettboom wrote: > To debug, it might be he

Re: [Matplotlib-users] cbook.report_memory IOError

2013-07-17 Thread Michael Droettboom
To debug, it might be helpful to try ps -p PID -o rss,vsz (where PID is the process id of an interesting process) and see what happens. Mike On 07/17/2013 02:05 AM, Eric Firing wrote: > On 2013/07/16 5:50 PM, K.-Michael Aye wrote: >> Hi! >> >> I have just run an old code that I believe was wor

Re: [Matplotlib-users] cbook.report_memory IOError

2013-07-16 Thread Eric Firing
On 2013/07/16 5:50 PM, K.-Michael Aye wrote: > Hi! > > I have just run an old code that I believe was working before on OSX. > I am trying this with matplotlib 1.2.1 on an OSX EPD running Python 2.7.3 It works for me with OSX Mountain Lion and mpl 1.2.1 compiled from source. I don't think this

[Matplotlib-users] cbook.report_memory IOError

2013-07-16 Thread K . -Michael Aye
Hi! I have just run an old code that I believe was working before on OSX. I am trying this with matplotlib 1.2.1 on an OSX EPD running Python 2.7.3 In [1]: from matplotlib.pylab import * In [2]: import matplotlib.cbook as cbook In [3]: data = ones((1500,1500,3)) In [4]: imshow(data) Out[4]: