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

Mac 下设置matplotlib显示中文

程序员文章站 2022-03-21 11:11:37
...

https://www.jianshu.com/p/140bd6542f30
Mac 下设置matplotlib显示中文

2019.01.13 22:28:48
字数 80
阅读 284
由于Mac系统自带有中文字库,Arial Unicode MS即为其中一种。不需要安装字库,不需要修改配置文件。

import matplotlib.pyplot as plt
plt.rcParams["font.family"] = 'Arial Unicode MS'

直接使用上述语句即可。

可用以下语句列出matplotlib支持的字体文件

import matplotlib
a=sorted([f.name for f in matplotlib.font_manager.fontManager.ttflist])
 
for i in a:
    print i

在列表中找到中文字体即可