2016년 11월 23일 수요일

_getfullpathname: embedded null character : Python3.x 에서 plt 오류

import matplotlib.pyplot as plt 시

_getfullpathname: embedded null character 오류 메세지가 나타나면,

파이선설치 디렉토리내의 

{파이썬설치경로}/lib/site-packages/matplotlib/font_manager.py

파일의 win32InstalledFonts 함수 안의

direc = os.path.abspath(direc).lower() 를 direc = direc.split('\0', 1)[0] 로 변경한다.

댓글 1개: