我使用的是 macOS 系统。当在虚拟环境中尝试使用 matplotlib 时,会出现如下的报错:

1
ImportError: Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework. See the Python documentation for more information on installing Python as a framework on Mac OS X. Please either reinstall Python as a framework, or try one of the other backends. If you are using (Ana)Conda please install python.app and replace the use of 'python' with 'pythonw'. See 'Working with Matplotlib on OSX' in the Matplotlib FAQ for more informatio

根据错误信息,要么我们使用 Python as Framework,要么我们更换使用的后端(backend)。Matplot 专门就 matplotlib 的后端问题有一个网页:Working with Matplotlib in Virtual environments。文章中提到,Tk这个框架(即TkAgg后端)一般来说总是可用的,不需要额外的外部依赖。(不过在特定的 Linux 发行版本中可能需要安装python-tk)。要使用Tk需要做如下配置过程:

1
2
3
import matplotlib
matplotlib.use("TkAgg")
import matplotlib.pylab as plt

每次这么配置比较麻烦,我们可以通过~/.matplotlib/matplitlibrc文件来固化配置(如果这个文件不存在可以手动创建),文件中添加如下内容:

1
backend: TkAgg

不过我在使用过程中发现使用TkAgg时会出现系统级的错误,抛出了Terminating app due to uncaught exception的错误。因此我尝试替换成其他后端。我主要选择包括:

Matplotlib可用后端类型

而又因为PySide只支持比较早的 python 版本,因此我选择了 Qt5 作为后端。在这之前,我们需要安装下面的依赖

1
2
brew install qt
pip install PySide2

安装完成后配置过程和TkAgg的类似,后端的名字为QT5Agg