본문 바로가기

Programming/Python

[Python] Pyinstaller 사용 시 tkcalendar 에러 문제

tkinter의 달력 위젯인 tkcalendar를 넣고

 

pyinstaller로 exe를 만들어 실행을 하면 동작이 되지 않는다.

 

 

이런 경우

 

hidden-import 옵션에서 babel.numbers 를 추가해주거나

 

tkcalendar를 사용하는 코드에

 

from babel.numbers import *

 

를 추가하여 빌드한다.

 

 

 

참고)

https://stackoverflow.com/questions/57811928/how-to-install-python-application-with-tkcalendar-module-by-pyinstaller