Linux下matpoltlib中文的乱码问题

①从Windows的D:\Windows\Fonts文件夹下把msyh.ttf拷贝到matplotlib的ttf文件夹下,我的文件夹目录是:

/home/hadoop/app/anaconda3/lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf

②编辑matplotlibrc文件,此文件可以通过以下代码获得

import matplotlib  
matplotlib.matplotlib_fname()

完成以下设置

font.family         : Microsoft YaHei
font.serif          : DejaVu Serif, Bitstream Vera Serif, New Century Schoolbook, Century Schoolbook L, Utopia, ITC Bookman, Bookman, Nimbus Roman No9 L, Times New Roman, Times, Palatino, Charter, serif, Microsoft YaHei

③将~/.cache/matplotlib文件夹删除
④重启kernel
ps:如果无效,运行以下代码查看微软雅黑是否可用

import matplotlib
sorted([f.name for f in matplotlib.font_manager.fontManager.ttflist])

然后祈祷。。。。反正我是弄出来了

你可能感兴趣的:(python)