欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matplotlib中文显示乱码问题解决

程序员文章站 2022-03-21 14:21:49
...

在使用 matplotlib 画图的时候可能会有中文显示乱码的问题,提供两种解决方式:

第一种:

# 在代码中加入以下两行
plt.rcParams['font.sans-serif']=['SimHei']
plt.rcParams['axes.unicode_minus']=False

第二种

下载中文字体(黑体,看准系统版本)

  • 下载 arial unicode ms 字体到 /home 目录

  • 拷贝字体到 usr/share/fonts 下:

    sudo cp ~/arial\ unicode\ ms.ttf /usr/share/fonts/arial\ unicode\ ms.ttf
    
  • 修改配置文件matplotlibrc 并且在~/.matplotlib/matplotlibrc也进行修改

    在安装的地方找到虚拟环境ai/lib/python3.6/site-packages/matplotlib/mpl-data目录下面,修改下面三项配置

    font.family         : sans-serif        
    

font.sans-serif : arial unicode ms, Bitstream Vera Sans, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif

  • 删除matplotlib字体缓存:

    rm -rf ~/matplotlib/fontList.json