其他分享
首页 > 其他分享> > jupyter notebook 安装中文字体显示

jupyter notebook 安装中文字体显示

作者:互联网

 下载字体SimHei。将字体拷贝到如下目录下: 

sudo cp ~/SimHei.ttf /usr/share/fonts/SimHei.ttf

 通过以下代码找到matplotlibrc文件,

import matplotlib
matplotlib. matplotlib_fname()

进入到matplotlibrc文件,

cd /usr/local/lib/python3.8/dist-packages/matplotlib/mpl-data
vi matplotlibrc

将文件内容修改为如下代码:

font.family         : sans-serif
font.sans-serif         : SimHei
axes.unicode_minus  : False

标签:jupyter,SimHei,matplotlib,中文字体,notebook,matplotlibrc,font,ttf,usr
来源: https://blog.csdn.net/m0_58564673/article/details/120799749