标签:-bash int ttf 图片 als lse 删掉 port 直接
from matplotlib.font_manager import FontManager
mpl_fonts = set(f.name for f in FontManager().ttflist)
print(‘all font list get from matplotlib.font_manager:‘)
for f in sorted(mpl_fonts):
print(‘\t‘ + f)
打印结果如下:
选择一款中文字体即可,这里我选择的是苹果的冬青黑体:"Hiragino Sans GB",windows用户可以选择黑体(SimHei)
Mac:
cd ~/.matplotlib
rm -r *
Windows:
进入到自己的用户目录文件夹下,在资源管理器的“查看”选项卡中勾选“显示隐藏文件及目录”即可看到.matplotlib
文件夹,或者直接在资源管理器的路径栏中在路径后面手动输入.matplotlib
后回车即可进入该文件夹
然后把该文件夹内的资源删除即可。
Mac:
输入vim ~/.matplotlib/matplotlibrc
:
然后将文件内容修改为:
font.family : sans-serif
font.sans-serif : Hiragino Sans GB
axes.unicode_minus : False
font.sans-serif
后面改为自己选择的字体即可。
Win:
.matplotlib
文件夹中新建matplotlibrc文件,把上面内容粘贴进去后.txt
后缀名删掉即可。接下来重启一下JupyterLab内核即可看到效果。
标签:-bash int ttf 图片 als lse 删掉 port 直接
原文地址:https://www.cnblogs.com/fade-color/p/14725712.html