해결방안
!pip install matplotlib
!sudo apt-get install -y fonts-nanum
!sudo fc-cache -fv
!rm ~/.cache/matplotlib -rf
# 런타임 재시작
참고
# 폰트 인스톨
# 한글폰트 사용 in colab
%matplotlib inline
import matplotlib as mpl
import matplotlib.pyplot as plt
import matplotlib.font_manager as fm
path = '/usr/share/fonts/truetype/nanum/NanumBarunGothic.ttf'
font_name = fm.FontProperties(fname=path, size=10).get_name()
print(font_name)
plt.rc('font', family=font_name)
fm._rebuild()
mpl.rcParams['axes.unicode_minus'] = False
plt.text(0.5, 0.5, '한글되냐', size=10)
'Programming > Others' 카테고리의 다른 글
GitHub generate SSH Key (0) | 2021.12.06 |
---|---|
GitHub 외부저장소에서 원하는 브런치만 가져오기 (0) | 2021.04.11 |
GitHub 기본 코드 (0) | 2021.04.11 |
Sourcetree 설치 시 주의 사항 (0) | 2021.04.11 |
Git Config 설정 확인 및 변경 (0) | 2021.02.13 |