[matplotlib] 한글 깨짐 해결
1907 단어 pandasmatplotlibmatplotlib
참고 : https://jinyes-tistory.tistory.com/70
[에러메시지]
Font family [] not found. Falling back to DejaVu Sans
-
캐쉬 경로를 검색한다.
matplotlib.get_cachedir()
-
해당 캐쉬 경로로 이동, tex.cache 폴더랑 fontList.json 파일 모두 삭제한다.
user@Ubuntu:~/.cache/matplotlib$ ls
fontlist-v310.json fontlist-v330.json tex.cache
-
런타임 RESTART
-
폰트 재설정
# 한글 폰트 사용을 위해서 세팅
import matplotlib.pyplot as plt
import matplotlib as mpl
from matplotlib import font_manager, rc
font_path = "/usr/share/fonts/truetype/nanum/NanumGothic.ttf"
font = font_manager.FontProperties(fname=font_path).get_name()
rc('font', family=font)
- 한글 폰트가 깨지지 않고 뜬다 !
Author And Source
이 문제에 관하여([matplotlib] 한글 깨짐 해결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cateto/matplotlib-한글-깨짐-해결저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)