其他分享
首页 > 其他分享> > matplotlib.pyplot 插件中文字体报错RuntimeWarning: Glyph 26376 missing from current font

matplotlib.pyplot 插件中文字体报错RuntimeWarning: Glyph 26376 missing from current font

作者:互联网

在用  matplotlib.pyplot  进行绘图时加入中文字体,提示字体找不到,解决方法如下

1、百度下载  SimHei.ttf (黑体) 字体文件;

2、复制到  D:\Python38\Lib\site-packages\matplotlib\mpl-data\fonts\ttf  目录下(我的目录是这样的);

3、修改文件   D:\Python38\Lib\site-packages\matplotlib\mpl-data\matplotlibrc

 font.family         : sans-serif   
 # 去掉前面的#     
 font.sans-serif     : SimHei, Bitstream Vera Sans, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif  
 # 去掉前面的#,并在冒号后面添加SimHei
 axes.unicode_minus  : False
 # 去掉前面的#,并将True改为False

4、完成字体配置,可正常使用

标签:插件,sans,RuntimeWarning,SimHei,matplotlib,serif,报错,去掉,font
来源: https://www.cnblogs.com/juices/p/15789087.html