Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detailed explanation about Python's "freeze"

Tags:

python

freeze

Is there anywhere a detailed explanation about Python's "freeze" thing? I saw the PyPi page, but I don't think it's comprehensive enough.

like image 580
Ram Rachum Avatar asked Nov 05 '09 14:11

Ram Rachum


1 Answers

There is documentation about freeze on the wiki and the source docstring is pretty good.. There is an alternative, cx_Freeze. For windows there is py2exe. For Macs, py2app.

Unless you are trying to make a single-download type program for windows, it is often easier to rely on eggs or source packages installed via setup.py/setuptools/distribute/pip.

like image 76
John Paulett Avatar answered Sep 17 '22 23:09

John Paulett