Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 12 down vote accepted

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

share|improve this answer
1  
pyinstaller solved my problem nicely. Thanks a lot! – changelog Oct 15 '08 at 2:38

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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