一 背景
最近使用matplotlib,画图时候,出现中文乱码,在此记录解决方案。
二 bug现象
三 解决方案
在代码中添加如下
import matplotlib as mpl
font_path = '/home/xx/Downloads/chinese.simhei.ttf'
mpl.font_manager.fontManager.addfont(font_path)
mpl.rc('font', family='SimHei')
可以看到,中文乱码解决了
四 字体下载连接
以上代码中文字体下载连接,点击它即可 中文字体下载连接
标签:中文,mpl,matplotlib,乱码,中文字体,font From: https://blog.csdn.net/qq_43318374/article/details/145035658