1. Nanum Font Install
apt-get install fonts-nanum*
2. matplotlib 경로 확인
print(matplotlib.__file__)
3. Nanum Font copy to matplotlib
cp /usr/share/fonts/truetype/nanum/Nanum* /opt/conda/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/
4. matplotlib Font cache 삭제
rm -rf ~/.cache/matplotlib/*
5. Font 목록 확인
import matplotlib.font_manager
font_list = matplotlib.font_manager.findSystemFonts(fontpaths=None, fontext='ttf')
[matplotlib.font_manager.FontProperties(fname=font).get_name() for font in font_list if 'Nanum' in font]
6. 폰트 설정
import matplotlib
import matplotlib.pyplot as plt
plt.rc('font', family='NanumSquare')
matplotlib.rcParams['axes.unicode_minus'] = False
'Dev > Linux' 카테고리의 다른 글
[Ubuntu] scp를 사용하여 Window에서 Ubuntu로 파일 전송 (0) | 2024.02.20 |
---|---|
[Ubuntu] Docker Container 한글 깨짐 해결 (0) | 2023.04.25 |
[Ubuntu] wget 으로 구글 드라이브 파일 Download (0) | 2023.04.21 |
[Ubuntu] Terminator (2) | 2022.08.18 |
[Ubuntu] / [oh-my-zsh] 터미널의 테마를 지정해보자 (0) | 2021.12.28 |