본문 바로가기
Programming/Python

[Python] pyinstaller 에러 RecursionError: maximum recursion depth exceeded

by Skogkatt의 개인 블로그 2020. 1. 31.
반응형

pyinstaller을 사용해 exe로 변환할 때 발생하는 RecursionError: maximum recursion depth exceeded

1. pyinstaller 사용

 

 

2. maximum recursion depth exceeded 에러 발생

 

 

3. 생성된 spec 파일을 열고

 

 

4. 상단에 아래 코드 추가

import sys
sys.setrecursionlimit(5000)

 

5. 터미널에서 파이썬 파일이 아닌 spec 파일로 pyinstaller 실행

 

 

6. build 폴더 안에 생성 완료

 

 

참고

https://stackoverflow.com/questions/38977929/pyinstaller-creating-exe-runtimeerror-maximum-recursion-depth-exceeded-while-ca

 

반응형

댓글