Colab에서 matplotlib 한글 폰트 출력하기
한글 폰트 설치
먼저 Colab에 한글 폰트를 설치한다.
1
2
3
!sudo apt install -y fonts-nanum
!sudo fc-cache -fv
!rm -rf ~/.cache/matplotlib
설치가 완료된 다음 런타임을 다시 시작해주면, 한글 폰트를 사용할 수 있게 된다.
한글 폰트 설정
아래 코드를 이용하여, 위에서 설치한 한글 폰트를 matplotlib에 설정한다.
1
2
3
import matplotlib.pyplot as plt
plt.rc('font', family='NanumBarunGothic')
plt.rc('axes', unicode_minus=False)
이제부터는 한글 폰트를 출력할 수 있다.
1
2
3
plt.title('한글제목')
plt.bar([0, 1, 4], [-1, 3, 1])
plt.show()
This post is licensed under CC BY 4.0 by the author.