Aug-21-2018, 08:49 AM
(This post was last modified: Aug-21-2018, 08:49 AM by keegan_010.)
Hello,
I am trying to use py2exe.
I have already have my python file as well as the setup file for it which goes like this:
This doesn't seem to be the problem, however I have read that the next step is to run a command on command prompt
setup.py py2exe
But when I do this it says:
'setup.py' is not recognized as an internal or external command,
operable program or batch file.
I am trying to use py2exe.
I have already have my python file as well as the setup file for it which goes like this:
1 2 3 4 |
from distutils.core import setup import py2exe setup (console = [ 'test.py' ]) |
setup.py py2exe
But when I do this it says:
'setup.py' is not recognized as an internal or external command,
operable program or batch file.