系统文字及wps文字
下载字体
下载window字体和wps缺失的字体
百度网盘
提取码:d2di
拷贝到/usr/share/fonts目录下
sudo mkdir /usr/share/fonts/windows-fonts
sudo mkdir /usr/share/fonts/wps-fonts
cp /你的下载的window-font文件/ /usr/share/fonts/windows-fonts
cp /你的下载的wps-font文件/ /usr/share/fonts/wps-fonts
chmod -R 777 /usr/share/fonts/windows-fonts
chmod -R 777 /usr/share/fonts/wps-fonts
更新系统字库
sudo mkfontscale
sudo mkfontdir
sudo fc-cache -fv
reboot
matplotlib汉字乱码
搜索matplotlibrc
在你的matplotlib安装位置搜索matplotlibrc。
一般在/python3.6/site-packages/matplotlib/mpl-data目录下
复制SimHei.ttf到/python3.6/site-packages/matplotlib/mpl-data/fonts/下
修改matplotlibrc
去除font.family,font.sans-serif ,axes.unicode_minus 这三项前的#号
在font.sans-serif :后增加SimHei #解决汉字显示问题
在axes.unicode_minus:后修改为 False #解决负号显示问题
font.family : sans-serif
font.sans-serif : SimHei, DejaVu Sans, Bitstream Vera Sans, Computer Modern Sans Serif, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif
axes.unicode_minus : False
删除~/.cache/matplotlib内的缓存