Mac 下设置matplotlib显示中文

由于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

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

你可能感兴趣的:(Mac 下设置matplotlib显示中文)