Python Forum

Full Version: Can a player play game created with Python without installing Python?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
After I finished my game(around the end of this year),I plan to publish it.will the player that doesn't have Python and the some library installed on their computer be able to play?
If they can't play,what should I do to allow them to play?
Hello,
yes, for use on Windows platforms you can use py2exe (http://www.py2exe.org/) to pack your creation into an executable. It would include Python interpreter and modules required to run the game, so user doesn't need to install anything else.
Another option may be PyInstaller (http://www.pyinstaller.org/), and probably more, but I am not familiar with them.
For shure. Pyinstaller, py2exe, freeze  are the tools you need
See snippsat's post here https://python-forum.io/Thread-can-t-run...yinstaller
on recommended pyinstaller