Matplotlib: Font family ['sans-serif'] not found.(macOS)

Matplotlib: Font family ['sans-serif'] not found.(macOS)
具体原因是缺少了字体库 SimHei.ttf。

1. 下载 SimHei.ttf

这个字体库的资源到处都是,自行寻找靠谱网站下载。

2. 确定字体库存放路径

在 jupyter notebook 上,输入下面代码:

import matplotlib
print(matplotlib.matplotlib_fname())

Matplotlib: Font family ['sans-serif'] not found.(macOS)
字体库的存放路径就在其路径的兄弟目录 fonts/ttf 里面。

3. 导入字体库

将 SimHei.ttf 拷贝到 fonts/ttf 目录中,我的目录为:

/Users/virgilwjj/opt/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts

删除 ~/.matplotlib/fontlist-v330.json

rm ~/.matplotlib/fontlist-v330.json

重启 jupyter notebook 就可以解决。

Matplotlib: Font family ['sans-serif'] not found.(macOS)

上一篇:Linux系统基础知识目录、元数据、软硬链接、文件管理命令、vim查找替换、vimtab缩进


下一篇:Linux系统中CTG的安装,应用程序开发以及调试