I am trying to run tutorial for creating executable file available in below site
http://www.py2exe.org/index.cgi/Tutorial
But when I tried to run below setup.py file as instructed in tutorial I am getting error "ImportError: No module named 'py2exe'"
from distutils.core import setup
import py2exe
setup(console=['hello.py'])
Can anyone help me to know what is the issue here