Question on running exe file in Python

2011-02-13 Thread joy99
Dear Room, I am using Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v. 1500 32 bit (Intel)] on win32 on Windows XP (SP2). Trying to create an .exe file of my scripting file I had saved it as .exe instead of .py file. It seems created. But how to run it? I tried command prompt, seems

Re: Question on running exe file in Python

2011-02-13 Thread Chris Rebert
On Sun, Feb 13, 2011 at 4:56 AM, joy99 subhakolkata1...@gmail.com wrote: Dear Room, Just a friendly FYI: that's a strange salutation; comp.lang.python AKA python-list isn't a chat room, at least in the normal sense of the term. I am using Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC

Re: Question on running exe file in Python

2011-02-13 Thread joy99
Thanks for your reply. On Feb 13, 6:58 pm, Chris Rebert c...@rebertia.com wrote: On Sun, Feb 13, 2011 at 4:56 AM, joy99 subhakolkata1...@gmail.com wrote: Dear Room, Just a friendly FYI: that's a strange salutation; comp.lang.python AKA python-list isn't a chat room, at least in the normal

insufficient memory problem in running .exe file in ipython

2010-07-15 Thread youngung
Hello! I came across a problem in running a .exe file through ipython. os.system(' ~.exe') was used. The error message popped up says Memory error: insufficient physical memory available What should I try further? -- http://mail.python.org/mailman/listinfo/python-list

Re: insufficient memory problem in running .exe file in ipython

2010-07-15 Thread Steven D'Aprano
On Thu, 15 Jul 2010 00:54:19 -0700, youngung wrote: Hello! I came across a problem in running a .exe file through ipython. os.system(' ~.exe') was used. The error message popped up says Memory error: insufficient physical memory available What should I try further? More memory?

Re: running exe file

2008-08-22 Thread [EMAIL PROTECTED]
On Aug 22, 12:12 am, Saurabh Sharma [EMAIL PROTECTED] wrote: How can I run .exe file from my python script? import os os.startfile('file.exe') The downside is that it doesn't work on the mac.. but it does work on stuff like os.startfile('notepad.txt') I have been waiting for a good hacker

running exe file

2008-08-21 Thread Saurabh Sharma
How can I run .exe file from my python script? -- http://mail.python.org/mailman/listinfo/python-list

Re: running exe file

2008-08-21 Thread M�ta-MCI (MVP)
Hi! See: system( startfile( subprocess( spawn( etc. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list