matplotlib添加字体
matplotlib的字体路径为
/home/xxx/anaconda3/envs/xxx/lib/python3.9/site-packages/matplotlib/mpl-data/fonts/ttf/
windows字体路径为
C:\Windows\Fonts
将windows上的字体传到linux的路径上即可,然后执行
rm -rf /home/xxx/.cache/matplotlib
然后在代码里使用
plt.rc('font',family='Times New Roman')
就可以设置对应字体了