Re: [Matplotlib-users] Troubleshooting

2014-03-13 Thread William Ray Wing
On Mar 12, 2014, at 8:41 PM, Caio Sanches caiosanc...@live.com wrote: Hey there! I have a mac 10.9 (Mavericks), and I needed matplotlib for a course I was participating. I installed python 2.7.6, as requested, and downloaded the installer (dmg) from the sourceforge page. I created a

Re: [Matplotlib-users] video without black bands

2014-03-13 Thread diedro
Dear B., thanks a lot for your replay. I get it. What do you think is the measure for w and h. Is the unit of measure in pixels?. What does fps stand for? Thanks a lot Diego On 12 March 2014 16:05, Benjamin Root-2 [via matplotlib] ml-node+s1069221n43050...@n5.nabble.com wrote: In your

Re: [Matplotlib-users] video without black bands

2014-03-13 Thread Francesco Montesano
Dear Diego, 2014-03-13 14:49 GMT+01:00 diedro diego.aves...@gmail.com: Dear B., thanks a lot for your replay. I get it. What do you think is the measure for w and h. Is the unit of measure in pixels?. yes What does fps stand for? frames per second Cheers, Francesco Thanks a lot

Re: [Matplotlib-users] Example showing differences between Mac O$ and Windows use

2014-03-13 Thread Jeroen Hegeman
Hi Christophe, This is (I think) a known limitation of the OS X backend. One way around this is to use another backend. Which backends are available depends on how your matplotlib was built. (And unfortunately I don’t know how to figure out which ones are available, apart from trying.) In my

Re: [Matplotlib-users] Example showing differences between Mac O$ and Windows use

2014-03-13 Thread Joe Kington
That should be `matplotlib.use('TkAgg')`, not Agg. Agg is a non-interactive backend, while TkAgg is an interactive Tkinter wrapper around the Agg backend. On Thu, Mar 13, 2014 at 9:53 AM, Jeroen Hegeman jeroen.hege...@gmail.comwrote: Hi Christophe, This is (I think) a known limitation of the

Re: [Matplotlib-users] Example showing differences between Mac O$ and Windows use

2014-03-13 Thread Felix Patzelt
Jeroen seems to be right. The example runs fine in on my Mac when using the Qt4Agg backend (which is the default in my matplotlibrc file), but crashes when switching to the MacOSX backend. Tested on OS X 10.8.5., Matplotlib from MacPorts. Best, Felix Am 13.03.2014 um 15:53 schrieb Jeroen

Re: [Matplotlib-users] Example showing differences between Mac O$ and Windows use

2014-03-13 Thread Jeroen Hegeman
Oops, you are correct. Copy-paste error. I did actually see the blinking boxes with the TkAgg backend. Jeroen On 13 Mar 2014, at 16:08, Joe Kington joferking...@gmail.com wrote: That should be `matplotlib.use('TkAgg')`, not Agg. Agg is a non-interactive backend, while TkAgg is an

Re: [Matplotlib-users] Example showing differences between Mac O$ and Windows use

2014-03-13 Thread Felix Patzelt
Well, there is a list in ~/.matplotlib/matplotlibrc (see http://matplotlib.org/users/customizing.html) CONFIGURATION BEGINS HERE # the default backend; one of GTK GTKAgg GTKCairo CocoaAgg FltkAgg # MacOSX QtAgg Qt4Agg TkAgg WX WXAgg Agg Cairo GDK PS PDF SVG Template # You can also

Re: [Matplotlib-users] Example showing differences between Mac O$ and Windows use

2014-03-13 Thread Felix Patzelt
Are you sure that you want to use Python 3.3 on OSX 10.6??? Do you really still use 10.6? Do you want Python 3? I'm not sure on the current status, but many projects took quite a while to get ported over from Python 2. Furthermore, as often with free software, installation can be a bit tricky.

Re: [Matplotlib-users] Example showing differences between Mac O$ and Windows use

2014-03-13 Thread Sterling Smith
+1 for macports (I haven't used the others.) On Mar 13, 2014, at 10:12AM, Felix Patzelt wrote: Are you sure that you want to use Python 3.3 on OSX 10.6??? Do you really still use 10.6? Do you want Python 3? I'm not sure on the current status, but many projects took quite a while to get

Re: [Matplotlib-users] Animate on Mac O$

2014-03-13 Thread Ryan May
On Thu, Mar 13, 2014 at 2:34 AM, Christophe Bal projet...@gmail.com wrote: Hello, is there any hope that the problems with animate will be fixed for Mac users ? The only problem I'm aware of for Mac OSX is with blitting; blitting is purely a performance optimization, so animations themselves

Re: [Matplotlib-users] Animate on Mac O$

2014-03-13 Thread Ryan May
On Mar 13, 2014, at 17:55, Michiel de Hoon mjldeh...@yahoo.com wrote: The problems with animations on Mac are not so much related to the backend, but to the animations code itself. Animations with the MacOSX backend cannot be fixed without redesigning the animations module. Can you give