Hey All
I'm having trouble making executables with py2exe.
I'm using Python 2.6 and I'm trying to make the simple 'Hello World!' program work as an executable. My setup script is as follows:
from distutils.core import setup
import py2exe
setup(console=['hello.py'])
When I run the setup script in the command prompt 'C:\Python26\setup.py py2exe', I get the error message: 'error: hello.py: No such file or directory'
I've tried importing hello.py using IDLE and it works perfectly.
Does anyone know why it can't seem to find it when I use the command prompt?
I also get a 'DeprecationWarning' but I don't think this is important.
My hello.py script and setup.py script are both in the same directory.
Any help would be appreciated