欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matplotlib画图标签显示中文问题

程序员文章站 2022-03-20 17:57:25
...

解决方法

  • Python3 添加SimHei字体(simhei.ttf文件)到 
    /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/ 
    中; 
    下载地址:黑体字体simhei.ttf

  • 删除~/.matplotlib/下的所有缓存文件

$ rm -rf ~/.matplotlib/*.cache
$ rm -rf ~/.matplotlib/fontList.json

注意rm -rf命令,确认路径没错再用

  • 设置matplotlib使用的字体资源 
    在你要画图的的python文件中,添加
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = ['SimHei']    # 用来正常显示中文标签
plt.rcParams['axes.unicode_minus'] = False      # 用来正常显示负号
# 有中文出现的情况,需要u'内容'