我正在嘗試使用matplotlib進行圖表可視化,但每次運行項目時都會很煩人地尋找一個窗口。有沒有辦法強制它在其他窗口之上?我使用OSX 10.8和PyCharm IDE和已經嘗試過OSX如何將Matplotlib窗口放在前面?
from pylab import get_current_fig_manager()
get_current_fig_manager().window.raise_()
與
AttributeError: 'FigureManagerMac' object has no attribute 'window'
失敗,我會很感激任何其他的想法。
你在使用'show()'後試過這個嗎? – Mark