반응형
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 폴더 안에 생성 완료
참고
반응형
'Programming > Python' 카테고리의 다른 글
[Python] PyQt5 QListWidget()에 아이템 추가 (0) | 2020.04.16 |
---|---|
[Python] 파이썬 절대 경로 / 사용자 이름 가져오기 format(os.getlogin()) (0) | 2020.02.02 |
[Python] PyQt5 특정 리스트, 딕셔너리를 리스트 뷰에 표시 (0) | 2020.01.31 |
[Python] PyQt5 메시지 박스 / QMessageBox (0) | 2020.01.14 |
[Python] AttributeError: 'MainDialog' object has no attribute 'setCentralWidget' 에러 (0) | 2020.01.13 |
댓글