I have a folder with my game on Desktop. I've installed py2exe, 'cause it seemed to be a very good game and I wanted to share it.
Now, I did everything right (i followed youtube tutorial), but when I start command prompt and typed 'a.py py2exe' it returned a message saying something like 'py2exe module not found'. What should I do? I've put this into a.py:
from distutils.core import setup
import py2exe
setup(console=['Game.py'])
and I've put a.py in folder where my game.py and game data are.
What to do?