taw
taw

Reputation: 18861

How can I package python+pygame programs as executables?

I used py2exe earlier for that but it doesn't seem to be maintained any more, the last package they have is for Python 2.6.

I need the application with Python 2.7 + Pygame.

Big bonus points if it lets me make OSX packages as well.

Upvotes: 3

Views: 1711

Answers (1)

voithos
voithos

Reputation: 70602

How about PyInstaller? Last revision seems to have been made around 2 days ago, at the time of this writing, so it appears to be maintained, and claims to support Windows, Linux, and OSX.

cx_Freeze also looks very promising. It also claims to be cross-platform. Yet another one is py2app, which support OSX.

Upvotes: 4

Related Questions