-2

What program can I use to make a stand-alone EXE of a python program? and how would I use it?

DeadChex
  • 4,379
  • 1
  • 27
  • 34

1 Answers1

2

You can use py2exe http://www.py2exe.org

And there's a tutorial on how to use it on their site http://www.py2exe.org/index.cgi/Tutorial

It converts runnable python scripts to exe executables so the user doesn't even have to install python just run the file

DeadChex
  • 4,379
  • 1
  • 27
  • 34