我的 matplotlib 的默认后端是“agg”。我在 stackoverflow 上读到(How can I set the 'backend' in matplotlib in Python?),为了显示图形,我需要使用 TkAgg、WX、QTAgg 或 QT4Agg。我尝试使用所有 4 个(mpl.use('TkAgg') 等)并且 matplotlib 找不到它们中的任何一个(我不能使用 QTAgg 或 QT4Agg,因为根据 matplotlib,它与 python3 不兼容)。我不确定出了什么问题,因为当我转到 /usr/local/lib/python3.3/dist-packages/matplotlib/backends/ 时,tkagg.py 和 backend_tkagg.py 都在那里。这些错误也都适用于 wx。
如果有任何相关性,我会在 Quantal 上使用 python3.3。