matplotlib图例中文乱码解决
Posted 唯心有物
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib图例中文乱码解决相关的知识,希望对你有一定的参考价值。
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from matplotlib.font_manager import FontManager
import subprocess
fm = FontManager()
mat_fonts = set(f.name for f in fm.ttflist)
#print(mat_fonts)
output = subprocess.check_output(‘fc-list :lang=zh -f "%{family}\n"‘, shell=True)
#print( ‘*‘ * 10, ‘系统可用的中文字体‘, ‘*‘ * 10)
#print (output)
zh_fonts = set(f.split(‘,‘, 1)[0] for f in output.decode(‘utf-8‘).split(‘\n‘))
available = mat_fonts & zh_fonts
print (‘*‘ * 10, u‘可用的字体‘, ‘*‘ * 10)
for f in available:
print (f)
修改你的matplotlib的配置文件matplotlibrc,
anaconda3/lib/python3.5/site-packages/matplotlib/mpl-data/matplotlibrc
这一部分,将#font.family : sans-serif 修改为
font.family : ‘Droid Sans Fallback‘
以上是关于matplotlib图例中文乱码解决的主要内容,如果未能解决你的问题,请参考以下文章