I'm trying to use matplotlib for chart visualizations, but it is very annoying to look for a window each time I run the project. Is there any way to force it to be on top of other windows? I use OSX 10.8 and PyCharm IDE and already tried
from pylab import get_current_fig_manager() get_current_fig_manager().window.raise_() Which fails with
AttributeError: 'FigureManagerMac' object has no attribute 'window' I'd appreciate any other ideas.
show()?