22.01.10 19:50 작성
·
690
1
답변 1
1
2022. 01. 10. 21:21
안녕하세요!
colab 사용자를 위한 폰트 설정 안내가 부족했네요!
해결되었다니 다행입니다.
아래와 같은 방법으로 폰트 설정을 해볼 수 있는데요. 수업자료에도 업데이트 해두겠습니다!
좋은 제안 감사합니다!
def get_font_family():
"""
시스템 환경에 따른 기본 폰트명을 반환하는 함수
"""
import platform
system_name = platform.system()
if system_name == "Darwin" :
font_family = "AppleGothic"
elif system_name == "Windows":
font_family = "Malgun Gothic"
else:
# Linux(colab)
!apt-get install fonts-nanum -qq > /dev/null
!fc-cache -fv
import matplotlib as mpl
mpl.font_manager._rebuild()
findfont = mpl.font_manager.fontManager.findfont
mpl.font_manager.findfont = findfont
mpl.backends.backend_agg.findfont = findfont
font_family = "NanumBarunGothic"
return font_family