TLDR pip install zhplot安装,之后import zhplot即可。 GitHub 地址 https://github.com/shenxiangzhuang/zhplot 为什么 只想做个简单的图,能够正常显示中文不关心具体字体,不想为了做个图去捣腾系统字体 示例 import zhplot import matplotlib.pyplot as plt plt.plot([1, 2, 3, 4]) plt.title('这是一个标题') plt.xlabel('横坐标') plt.ylabel('纵坐标') plt.show()