(Mac上)使用Python进行matplotlib 画图时,中文显示不出来

【问题描述】

①报错确缺失字体:

②使用matplotlib画图,中文字体显示不出来

【问题思考】

在网上搜了好多,关于使用python进行matplotlib画图字体显示不出来的,但是我试用了下,对我来说都没有。有些仅使用于windows系统,某些博主还起标题适用于mac,瞎扯。

【解决办法】:

①首先查看下mac里面的使用于matplotlib画图有那些字体呢。

python 复制代码
# 查看matplotlib中的字体有哪些
from matplotlib.font_manager import FontManager
mpl_fonts = set(f.name for f in FontManager().ttflist)
print('all font list get from matplotlib.font_manager:')
for font in sorted(mpl_fonts):
    print('\t' + font)

②选择1-2个自己熟悉的字体使用即可。

python 复制代码
import matplotlib.pyplot as plt
plt.rc("font", family='PingFang HK')   # 选择自己想要的字体就行

③运行后,字体就可以显示啦。

噢耶,可以咯,继续学习!!!

相关推荐
程序猿000001号3 天前
探索数据可视化的利器:Matplotlib
信息可视化·matplotlib
Mobius80865 天前
探索 Seaborn Palette 的奥秘:为数据可视化增色添彩
图像处理·python·信息可视化·数据分析·pandas·matplotlib·数据可视化
乌漆嘎嘎黑6 天前
XIO: fatal IO error 22 (Invalid argument) on X server “localhost:10.0“【小白找bug】
pytorch·python·bug·matplotlib·mobaxterm
道友老李8 天前
【机器学习】数据可视化之Matplotlib(二)
人工智能·python·机器学习·信息可视化·matplotlib
Illusionna.9 天前
Word2Vec 模型 PyTorch 实现并复现论文中的数据集
人工智能·pytorch·算法·自然语言处理·nlp·matplotlib·word2vec
Trouvaille ~9 天前
【机器学习】在不确定的光影中:机器学习与概率论的心灵共舞
人工智能·python·机器学习·ai·数据分析·概率论·matplotlib
丶21369 天前
【Python】【数据分析】深入探索 Python 数据可视化:Matplotlib 绘图库完整教程
python·信息可视化·matplotlib
-一杯为品-10 天前
【Python】Matplotlib基本图表绘制
开发语言·笔记·python·学习·matplotlib
迷路爸爸18010 天前
ubuntu 使用 Times New Roman 字体在 Matplotlib 中绘图并调整字体大小
matplotlib
零光速13 天前
数据处理与统计分析——10-Pandas可视化-Matplotlib的常用API
数据结构·python·数据分析·pandas·matplotlib