I've been using cx_freeze for a while now and there is one thing I've really wanted to do: put ALL of the files into ONE executable that I can distribute. It's not really user friendly to send around a folder filled with 30 files, all in the same directory. How can I accomplish this? Thanks.

link|improve this question

2  
PyInstaller does this. I'd like to know how to do it with cx_freeze as well. – Wang Dingwei Feb 15 '11 at 3:58
I'd never heard of PyInstaller, and it looks awesome! Thanks for the suggestion. – Patrick Moriarty Feb 15 '11 at 22:23
feedback

2 Answers

up vote 1 down vote accepted

Isn't this what bbfreeze does?

Tutorial here: http://www.blog.pythonlibrary.org/2010/08/19/a-bbfreeze-tutorial-build-a-binary-series/

It's actually not that hard to roll your own with Python zipimport http://docs.python.org/library/zipimport.html

You may prefer to use something like UPX which is a more general solution, not Python only. http://upx.sourceforge.net/

link|improve this answer
Could you maybe put a little more effort into this answer? No summary of how to do it, not even a link to pypi.python.org/pypi/bbfreeze – endolith Mar 13 at 1:50
feedback

It is not supported in cx_freeze. There was discussion about it on mailing list. As I recall, the author stated that others (PyInstaller, Py2Exe) use some dirty hacks to achieve that. Some anti-virus programs can consider that behavior as a virus also.

I used PyInstaller for some time, but went back to cx_freeze because of Python 2.7 support. I pack everything using Inno Setup, so it is easy to distribute. Depends if you use Windows or not.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.