본문 바로가기

Language/python

py2exe :: Python 스크립트를 실행파일로 배포하기

py2exe란 파이썬 배포 프로그램이 있다. .exe의 실행파일 형태로 배포가 되며, python이 설치되어 있지 않더라도 해당 파이썬 프로그램을 실행할 수 있게 도와준다.


from distutils.core import setup
import py2exe

setup(console=['make_qacpp_report.py'],)


위와 같이 setup.py란 스크립트를 배포를 원하는 스크립트 폴더에 생성한 후 아래와 같이 실행하면 된다. dist 하위 폴더에 실행 파일이 생기게 된다.

C:\Tutorial>python setup.py py2exe


자세한 건 아래의 링크를 참조한다.


http://www.py2exe.org/index.cgi/Tutorial