matplotlibに日本語のフォントを導入したいです。
下記はコードの一部
python
1 # 日本語フォントを導入 2 fontprop = matplotlib.font_manager.FontProperties(fname="/usr/share/fonts/truetype/fonts-japanese-gothic.ttf") 3 4
エラー文
[Errno 2] No such file or directory: '/usr/share/fonts/truetype/fonts-japanese-gothic.ttf'
実行内容
fonts-japanese-gothic.ttfが見つからないというエラーがあり、
fonts-japanese-gothic.ttfが無いと考え、
ターミナルで
fc-list|less | grep fonts-japanese-gothic.ttf を実行した結果
/Users/ユーザー/Library/Fonts/fonts-japanese-gothic.ttf: TakaoPGothic:style=Regular
という出力が出たので
下記の参考記事からファイルをダウンロードし、
ターミナルで
cp *ttf /usr/local/share/fonts/
を実行しましたが、結果は変わりませんでした。
参考記事
qiitaの記事
リンク内容
環境
環境
Anaconda、JupiterNotebook、Mac、python3.7
importしたもの
matplotlib 3.3.2
補足
python
1matplotlib.font_manager.FontProperties(fname="/usr/share/fonts/fonts-japanese-gothic.ttf")
パスに問題があるかと考え、truetypeを外しましたが
変わりませんでした。
あなたの回答
tips
プレビュー