views:

735

answers:

2

I'm trying to create a self-contained version of pisa (html to pdf converter, latest version), but I can't succeed due to several errors. I've tried py2exe, bb-freeze and cxfreeze.

This has to be in windows, which makes my life a bit harder. I remember that a couple of months ago the author had a zip file containing the install, but now it's gone, leaving me only with the python dependent way.

How would you work this out?

+1  A: 

What are the specific errors??? py2exe is probably the best-established tool to make this work. I'm sure someone on here can help if you give more specific information about the errors you're encountering.

Dan
+4  A: 

Check out pyinstaller, it makes standalone executables (as in one .EXE file, and that's it).

dwestbrook
pyinstaller solved my problem nicely. Thanks a lot!
changelog