[Python] Pyinstaller로 exe 파일로 배포하는 방법

제이브로·2024년 1월 31일
0

Python

목록 보기
12/17
post-thumbnail

1. pyInstaller란?

pyInstallerpython으로 작성한 코드를 exe로 배포하는 라이브러리입니다.

2. pyInstaller 설치

pip로 라이브러리를 설치해봅니다.

pip install pyInstaller
  • 보통은 GUI파일을 exe로 만들기 위해 사용합니다.
  • 파이썬 GUI 프로그램으로는, thkinter, PyQt5 등이 있습니다.

3. exe파일 만들기

pyinstaller로 실행파일 만들기

pyinstaller -w -F test.py

완료가 되면 현재 경로에서 dist폴더가 생기고, 그 안에 실행파일이 만들어집니다.

4. Options

주요 Options

OptionDefaultDescription
-F, --onefile-exe 하나의 파일로 만든다
-w, --windowed, --noconsole-콘솔창 없는 실행파일로 만든다

5. References

  1. pyinstaller

감사합니다.

profile
기록하지 않으면 기록되지 않는다.

0개의 댓글