IT/개발

[Mac] Python 실행파일 만들기 (feat. pyinstaller)

jeces1 2024. 6. 13. 21:36
반응형

 

Pyinstaller 설치

  • pip install pyinstaller

 

Pyinstaller 설치확인

  • pyinstaller --version

 

Pyinstaller 실행

  • pyinstaller -F -w 파일이름.py (-F:실행파일 1개만 생성, -w:터미널 창 안열림 옵션)

 

생성된 파일 실행해보기

  • dist 폴더에 생성되는데 들어가보면 

  • 아래와 같은 실행파일 생성

 

실행하면 잘 실행이 된다.

반응형