반응형
파이썬 쥬피터(juypter) 한글 깨짐 현상
파이썬에서 주로 사용하는 jupyter notebook에서 한글을 설정 안하면 깨진다. 'ㅁㅁㅁㅁ'로 표시 되기 때문에 한글을 설치하고, 세팅하는 작업이 필요하다
Centos에 한글 나눔 글씨체 설치
``` $ cd /usr/share/fonts/ $ wget http://cdn.naver.com/naver/NanumFont/fontfiles/NanumFontTTFALL.zip
$ unzip NanumFontTTFALL.zip -d NanumFont $ rm -f NanumFontTTFALL.zip ```
[참고] 2017.02.20 - Centos 나눔글씨체 설치하는 방법 http://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4%EB%82%98%EB%88%94%ED%8F%B0%ED%8A%B8%EC%84%A4%EC%B9%98
코드에서 한글 세팅
```python import matplotlib as plt from matplotlib import font_manager, rc
plt.fontmanager.getfontconfigfonts() fontname = fontmanager.FontProperties(fname='/usr/share/fonts/NanumFont/NanumGothic.ttf').getname() rc('font', family=font_name) ```
반응형
'Programming > Python' 카테고리의 다른 글
[파이썬] pickle을 사용해 dictionary 저장 및 로드 (0) | 2018.03.18 |
---|---|
[파이썬] 튜블 정렬 하는 방법 (0) | 2018.03.18 |
[Python] Pandas csv를 dataframe으로 읽고 쓰는 방법 (1) | 2017.12.31 |
[파이썬] gzip.open, zcat & pipeline 성능비교 (0) | 2017.12.31 |
파이썬(Python) 리스트 모든 조합 구하기 (combination vs permutations vs product) (0) | 2017.12.17 |