基本思路:由于Matplotlib只支持ttf字体,虚拟机Ubuntu内的中文字体都为ttc格式,所以需要安装一个中文ttf字体,所以只要下载一个中文ttf格式的字体放在usr/share/fonts下,然后将配置文件修改一下默认的字体就可以了 (font.family 的参数添加上你的中文文件名)
一:在linux下使用matplotlib画图时,横坐标和纵坐标的中文会出现方块状的乱码
二:解决办法
1. 下载中文字体或者直接复制C:\windows\fonts底下的ttf格式的中文字体,复制到linux中
字体下载地址(云盘地址):https://pan.baidu.com/s/1_-_W1pixJZ7bCUZ-sjeoTA
2.拷贝字体到 usr/share/fonts 下:
sudo cp ~/arial\ unicode\ ms.ttf /usr/share/fonts/arial\ unicode\ ms.ttf
3. 编辑matplotlib的配置文件:
终端执行:python(进入交互模式)
执行命令:
- import matplotlib
- matplotlib.matplotlib_fname()
- 获取matplotlib的配置文件位置(一般是:/usr/local/lib/python3.5/dist-packages/matplotlib/mpl-data/matplotlibrc)
编辑配置文件:vim /usr/local/lib/python3.5/dist-packages/matplotlib/mpl-data/matplotlibrc
三:清除缓存,并重启
1.
- 删除matplotlib字体缓存:
rm -rf ~/.cache/matplotlib/fontList.json
2. 重启kernel