Linux下解决matplotlib中文乱码的方法

原因:matplotlib没有使用操作系统的字体库,同时默认的字体列表里没有可以显示中文的字体。

解决过程:

1. 查看matplotlib支持的中文字体。

用python运行以下代码:

#! /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)

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.split('\n'))
available = mat_fonts & zh_fonts

print '*' * 10, '可用的字体', '*' * 10
for f in available:
    print f

2. 配置matplotlibrc文件。

修改matplotlibrc文件(Ubuntu默认对应的是/etc/matplotlibrc):

font.family         : serif
font.serif : {zh_family}, serif

其中{zh_family}为上一步中找到的其中一个可用中文字体。如果上步可用的字体为空,则需要将中文字体文件(tff)复制到matplotlib的字体目录下,再重复以上步骤。

  • *对于Windows,没有fc-list命令,找到对应可以字体直接在第2步里修改也可。
    原文作者:开元
    原文地址: https://segmentfault.com/a/1190000000621721
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞