python模块bug —— matplotlib 发表于 2020-07-27 分类于 bug , python module 阅读次数: Valine: matplotlib模块的各种bug汇总 图片中文乱码mac下用matplotlib绘图时发生标题和label中文乱码 应该是matplotlib默认的字库在mac下没有或字体对中文不支持导致 输入以下代码可以查看系统可用字体 1234from matplotlib.font_manager import FontManagerfm = FontManager()mat_fonts = set(f.name for f in fm.ttflist)print(mat_fonts) 选择一个适用的字体并设置: 12import matplotlib.pyplot as pltplt.rcParams['font.sans-serif'] = ['Arial Unicode MS'] 转载于mac下python matplotlib中文乱码解决方案(亲测可用)!! 你的鼓励是我最大的动力 🙂 打赏 微信支付 支付宝