jupyter matplotlib,以及seaborn在lunix下不能显示中文

最好直接在/user/share/fonts/安装相关字体,如果没有root权限可以在~/.local/share/fonts/安装相关字体
然后用如下代码发现字体的命名:
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, '可用的字体', '' * 10)
for f in available:
print (f)

********** 可用的字体 **********
STXinwei
最后就可以在
from matplotlib import pyplot as plt
plt.rc('font', family='STXinwei', size=7)中使用了

如果在matplot可以显示中文,但是在seaborn显示不了中文,多半是因为重新加载了sns的style设置
sns.set_style('white',{"font.sans-serif":['STXinwei']})
是设置了字体,不要省略{"font.sans-serif":['STXinwei']}这个;
也可以不要设置style

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容