Freeze
Freeze is a "pure Python" utility that ships with Python.
Freeze를 사용하여 Unix 시스템 용 실행 파일을 컴파일 할 수 있다.
이 유틸리티를 이용하면 파이썬이 설치되어 있지 않은 환경에서 프로그램을 실행 할 수 있다.
사용방법
간단한 예제 프로그램 작성, "hello.py"
print "Hello, World!"
이제 freeze.py 를 실행시킨다.
$ python freeze.py hello.py
메이크 실행!!
$ make 만들어진 어플리케이션을 실행!!
$ ./hello Hello, world!