0

I have made a text based adventure for my friends and I am wondering, since they don't have python interpreters, how can I convert a .py file to a .exe executable file?

Ethan Bierlein
  • 3,353
  • 4
  • 28
  • 42
  • 2
    This should do the trick http://www.py2exe.org/ Also see here https://stackoverflow.com/questions/112698/py2exe-generate-single-executable-file – Cory Kramer Apr 05 '14 at 21:02

1 Answers1

3
  • If on Python 2, use py2exe. This supports versions 2.3 through to 2.7.

  • If on Python 3, use cx_Freeze. This supports versions 2.7 through to 3.4.

anon582847382
  • 19,907
  • 5
  • 54
  • 57