If you want to distribute a python program (game or just plain script) as an exe for windows, there is a nifty library/set of tools called py2exe. This enables you to easily create an exe from your python programs. Here is the list of files you have to ship along with the exe if you are using pyglet library in your program:
avbin.dll
MSVCRT90.dll
Microsoft.VC90.CRT.manifest
package these along with the stuff get in the dist folder and you will be good to go on any windows system :)
Comments