matplotlib mac 找不到字体。 matplotlib不显示中文 RuntimeWarning: Glyph 19981 missing from current font.
程序员文章站
2022-03-26 19:25:34
...
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = ['Arial Unicode MS']
plt.rcParams['axes.unicode_minus'] = False # 解决保存图像是负号'-'显示为方块的问题
复制到代码中即可解决mac下找不到字体的问题