当前位置: 首页 > 工具软件 > Vera++ > 使用案例 >

解决ubantu里面报错findfont: Font family ['sans-serif'] not found. Falling back to Bitstream Vera Sans

狄易安
2023-12-01
  1. 在终端python 的环境下,查看字体路径
import matplotlib    
print(matplotlib.matplotlib_fname())
  1. 下载simhei.ttf ,放到指定目录下,例如我的目录为: /home/muli/anaconda3/lib/python3.5/site-packages/matplotlib/mpl-data/fonts/ttf
  2. 在home目录下,执行 ctrl + h ,打开隐藏目录, 删除 ~/.cache/matplotlib的缓冲目录
  3. 修改/home/muli/anaconda3/lib/python3.5/site-packages/matplotlib/mpl-data 里面的matplotlibrc文件,修改如下:
    font.family         : sans-serif        
    font.sans-serif     : SimHei, Bitstream Vera Sans, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif 
    axes.unicode_minus,将True改为False,作用就是解决负号'-'显示为方块的问题   
  1. 如果没有效果,可能需要开机重启
  2. 参考博客:http://wenda.chinahadoop.cn/question/6828以及 https://blog.csdn.net/dgatiger/article/details/50414549
 类似资料: