[python][转载]ubuntu上matplotlib显示中文
Posted FL1623863129
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[python][转载]ubuntu上matplotlib显示中文相关的知识,希望对你有一定的参考价值。
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
font = FontProperties(fname='/System/Library/Fonts/STHeiti Light.ttc', size=16)
plt.plot([0, 1], [1, 2])
plt.title('显示中文', fontproperties=font)
plt.show()
以上是关于[python][转载]ubuntu上matplotlib显示中文的主要内容,如果未能解决你的问题,请参考以下文章
[pyltp][ubuntu][python][转载]ubuntu安装pyltp