[Matplotlib-users] ipython --pylab interactive mode problem.

2014-03-27 Thread robbisg
Hi all, I've update matplotlib to the git version of the software (1.4.x), after updating it the interactive mode on ipython stopped working. I'll briefly show what happens: $ ipython -- pylab Python 2.7.3 (default, Feb 27 2014, 19:58:35) Type copyright, credits or license for more

[Matplotlib-users] RedHat and Release Upgrade to Numpy 1.8.1 and Matplotlib 1.3.1 / Install from Source

2014-03-27 Thread claudef
Dear colleagues, I've decided to upgrade my matpoltlib installation under a RedHat 6.4 Linux, by removing the original yum package and installing latest version of Numpy 18.1 and Matplotlib 1.3.1. My Python is still 2.6.6. The manual installation from source completed successfully, but when

Re: [Matplotlib-users] ipython --pylab interactive mode problem.

2014-03-27 Thread Benjamin Root
0.12.1 is a very old version of ipython. I know there have been some changes to matplotlib to deal with changes that ipython has made over the past two years, but I did think that they were all backwards compatible. @mdboom, do you think this could be related to that fix we made on detecting

Re: [Matplotlib-users] RedHat and Release Upgrade to Numpy 1.8.1 and Matplotlib 1.3.1 / Install from Source

2014-03-27 Thread Benjamin Root
How long did you wait? Do allow approximately one minute for the first execution to allow for the font.cache to be built. It can appear that the process has hung because it is waiting for fc-list subprocess to complete. Cheers! Ben Root

Re: [Matplotlib-users] ipython --pylab interactive mode problem.

2014-03-27 Thread robbisg
Yes! It was ipython issue! I was convinced that my version were the github one!!! I'm sorry! Thank you for the quick response! Roberto -- View this message in context: http://matplotlib.1069221.n5.nabble.com/ipython-pylab-interactive-mode-problem-tp43144p43149.html Sent from the matplotlib

Re: [Matplotlib-users] RedHat and Release Upgrade to Numpy 1.8.1 and Matplotlib 1.3.1 / Install from Source

2014-03-27 Thread Benjamin Root
Claude, it would be helpful to know exactly what code you executed. Some example code assumes interactive modes, while others simply save files without ever showing them to the screen. Also, please include a copy of your matplotlibrc file. Ben Root On Thu, Mar 27, 2014 at 1:47 PM,

Re: [Matplotlib-users] Disable zoom on toolbar

2014-03-27 Thread kaevy
checking the toolbar mode might help you. tb = get_current_fig_manager().toolbar if tb=='' : then you know that the toolbar is being used. this may not answer your question totally - but might help. k -- View this message in context: