当我尝试使用TkAgg后端进行绘图时,我的计算机将我注销(“崩溃”)(请参见下面的示例)。我正在使用mojave 10.14.6和python 3.7.3。
from sys import platform as sys_pf
if sys_pf == 'darwin':
import matplotlib
matplotlib.use("TkAgg")
x = [1,2,3]
# up to here the code does not cause a crash
plt.figure()
pl.plot(x)
plt.show()
答案 0 :(得分:0)
有类似的问题。 我现在唯一的解决方法是使用
matplotlib.use("MacOSX")