环境
macOS: 12.0.1
matplotlib: 3.4.3
步骤
好些文章都说的增加 rcParams['font.sans-serif']=['SimHei']
且中文字符前加 u 的办法能够解决,但我试了不行。我的零碎里就没有 SimHei 这种字体,只能先装置字体。
下载及装置字体
装置字体的教程很多,我次要参考的是上面这个:
matplotlib 中文乱码的两种解决方案
下载字体地址我用的是:
https://www.fontpalace.com/fo…
从新加载字体
如果你用 _rebuild()
也碰到如下谬误,能够用前面的指令间接清空 matplotlib cache 目录,否则就只能重启环境。
ImportError: cannot import name '_rebuild' from 'matplotlib.font_manager' (/usr/local/lib/python3.8/site-packages/matplotlib/font_manager.py)
清空 cache 目录的指令:
import shutil
import matplotlib
shutil.rmtree(matplotlib.get_cachedir())
最初
搞定。装置了字体后,在 matplotlib 里应用的中文字符串,后面不须要再加 u,也不须要再在代码里定义字体。