Re: Embedding a executable inside Python Script

2007-09-19 Thread Shankarjee Krishnamoorthi
I missed the obvious fact there. Thanks. I added it to the PATH and that fixed everything. Shankarjee On 9/19/07, Grant Edwards <[EMAIL PROTECTED]> wrote: > On 2007-09-19, Shankarjee Krishnamoorthi <[EMAIL PROTECTED]> wrote: > > > I have a exe made with py2exe for my Python routine. The issue > >

Re: Embedding a executable inside Python Script

2007-09-19 Thread Grant Edwards
On 2007-09-19, Shankarjee Krishnamoorthi <[EMAIL PROTECTED]> wrote: > I have a exe made with py2exe for my Python routine. The issue > I am running into is this. All the exes (mycode.exe and > other_executable.exe) are placed in a Network drive(Say I:) so > that people can access it. > > When the

Embedding a executable inside Python Script

2007-09-19 Thread Shankarjee Krishnamoorthi
Hi I have a python routine which calls an executable file created by someone else (I dont have the source code. All I have is an exe file). I do # My Python Code output = os.system('other_executable.exe') # Rest of my program. I need to give this routine to others to use it. I have a exe made