python 스크립트를 배포할 때 스크립트 실행환경 구축 안내하는게 번거롭다. 실행파일 형태로 배포한는게 편하다. 특히 파일 하나로 배포될 수 있다면 제일 좋다.
https://pyinstaller.org/en/stable/operating-mode.html#bundling-to-one-file
PyInstaller 를 사용하면 간단하게 실행파일로 만들 수 있다.

> pyinstaller script.py

pyinstaller 를 설치하고 위와 같이 실행하면 한 폴더에 배포파일이 생성된다.

> pyinstaller --onefile script.py

파일 하나로 만들고 싶으면 --onefile 이나 -F 옵션을 사용하면 된다.

728x90

+ Recent posts