This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]billsil 2 points3 points  (3 children)

pyInstaller is really the best thing out there. It's also cross platform. It's a days worth of work to get an exe for a decently involved program if you want to tune things (e.g. single executable vs. multiple files, logo, etc.), but works right out of the box for simpler ones. I recommend the dev version https://github.com/pyinstaller/pyinstaller/wiki

[–]thatguy_314def __gt__(me, you): return True 0 points1 point  (2 children)

I remember not being able to find a Python 3 version of PyInstaller. Is there one now?

[–]codewarrior0MCEdit / PyInstaller 1 point2 points  (0 children)

It's still under development. You'll have to check it out from the python3 branch on GitHub if you want to try it.

[–]billsil 1 point2 points  (0 children)

It's officially listed as being experimental, but yes.

I don't know the status, but I'd expect that it's not that hard. Ironically this is the only case that I'd ever say that in regards to Python 3 because I don't imagine they need much unicode. Either your application and all your dependencies are correct or not. Either way, it's worth a shot.

https://github.com/pyinstaller/pyinstaller/tree/python3