## matplotlibの環境確認
import matplotlib
print(matplotlib.rcParams['font.family']) #現在使用しているフォントを表示
> ['sans-serif']
## 以下コマンドを実行すれば、「Font family 'meiryo' not found」のワーニングが消える
plt.rcParams['font.family'] = 'IPAexGothic'

print(matplotlib.rcParams['font.family']) #現在使用しているフォントを表示
> ['IPAexGothic']

colabの環境でたまに発生するので一時対策メモです。

おすすめの記事