VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > python入门教程 >
  • matplotlib包图例出现中文乱码问题

1、下载中文包

https://github.com/StellarCN/scp_zh/blob/master/fonts/SimHei.ttf

2、查找matplotlib所在的文件路径

python3

然后在python3中输入

>>>import matplotlib

>>>matplotlib.matplotlib_fname()

文件路径

>>>exit()

3、将SimHei.ttf文件复制到mpl-data/fonts/ttf/文件夹下

4、更改matplotlibrc文件

font.family : sans-serif

font.sans-serif : SimHei

axes.unicode_minus : False

5、重新加载字体

python3

>>>from matplotlib.font_manager import _rebuild

>>>_rebuild()

 

出处:https://www.cnblogs.com/stacso/p/13761500.html


相关教程