[Python] 실행파일(exe) 생성

2020. 5. 12. 10:53Programming Language/Python

반응형

■ 실행파일을 생성하기 위해 필요한 패키지

  • pyinstaller - 64비트 컴퓨터에서 효율적으로 사용 가능 
  • py2exe

■ pyinstaller 사용법

1. pyinstaller -F 파일명.py

또는

2. pyinstaller --onefile 파일명.py 

■ 작업순서

1. py 파일 지정

2. 파일 생성 명령어실행

3. 파일생성완료 문구 확인

4. 해당 디렉토리에 'dist' 폴더 생성 확인

5. 실행파일 생성확인

반응형