解决linux服务器上matplotlib绘图中文显示方框问题
报错信息:findfont: Font family ['sans-serif'] not found. Falling back to DejaVu Sans.findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei找不到字体,在绘制的图片中中
报错信息:findfont: Font family ['sans-serif'] not found. Falling back to DejaVu Sans.
findfont: Generic family 'sans-serif' not found because none of the following families were found: SimHei
找不到字体,在绘制的图片中中文显示乱码python
解决方法:缓存
1. 查看配置路径:字体
import matplotlib print (matplotlib.matplotlib_fname())
2.下载字体:SimHei.ttf
自行百度,可以搜索到字体
3. 将字体拷贝到 tff 目录下:code /home/hwy/anaconda3/lib/python3.7/site-packages/matplotlib/mpl-data/fonts/tff
4. 删除字体缓存文件: 首先找到字体缓存文件的位置:unicode
from matplotlib import get_cachedir
a = get_cachedir()
print("a:", a)
/home/hwy/.cache/matplotlib/ 删掉获取到的文件夹目录就行了:
rm -rf /home/hwy/.cache/matplotlib/
5. 字体参数设置: 修改配置文件 matplotlibrc:
将一下三句修改,并将 # 去掉:
font.family : sans-serif
...
font.sans-serif : SimHei
...
axes.unicode_minus : False # use unicode for the minus symbol
意思就是知道字库族为 sans-serif,同时添加“SimHei”即宋体到字库族列表中,同时将找到axes.unicode_minus,将True改 成False,做用就是解决负号’-‘显示为方块的问题。 成功显示中文了!!
更多推荐
所有评论(0)