728x90
import matplotlib.font_manager as fm
font_list = fm.findSystemFonts(fontpaths = None, fontext = 'ttf')
font_list[:]
from matplotlib import font_manager, rc
font_path = 위에나온경로
font = font_manager.FontProperties(fname=font_path).get_name()
rc('font', family=font)
728x90
'Study > Python' 카테고리의 다른 글
[Python] 패키지 목록 requirement.txt 만들기 (0) | 2024.01.18 |
---|---|
[Python]샘플용 데이터프레임 쉽게 생성하기 (0) | 2023.11.17 |
[Python] for문을 활용해서 list, dictionary를 만들 때, 사소한 꿀팁 (0) | 2023.02.13 |
[Python] DataFrame에서 null이 들어있는 행만 보고 삭제하기 (0) | 2023.02.07 |
주피터 노트북 한글 깨짐 해결방법 (0) | 2022.11.21 |