(Python) 1_2. EXE 실행파일 만들기

최대 1 분 소요

💼📝🔑⏰ 📙📓📘📒🎓

💼 EXE 파일 개발 세팅

# 모듈 다운로드 install 
pip install pyinstaller  

# 터미널 입력 명령어
pyinstaller .\ReCycleExec.py


# 실행파일 안될때 .spec 파일수정을 통해서 만들기 
## 파일 상단에 추가 명령어.spec
import sys
sys.setrecursionlimit(5000)
## 터미널 명령어
pyinstaller .\ReCycleExec.spec

댓글남기기