how to run python file from the python IDLE editor

2008-11-20 Thread Seid Mohammed
hi all, I have a problem. when i run a file python xxx.py from a comand line, it just work. But the DOS command line do not support unicode and I want to run it just from the IDLE editor. i can run by pressing F5, but without an argument anybody can hint me how to run with an argument just in

how to run python file from the python IDLE editor

2008-10-31 Thread Seid Mohammed
Greetins all 1. I can easily run python file from a comand prompt just typing python filname.py. How can I do this from the python IDLE shell 2. How to create EXE in python. thanks all for making me to be more copnfortable with python Seid M -- RABI ZIDNI ILMA --

Re: how to run python file from the python IDLE editor

2008-10-31 Thread r
On Oct 31, 1:33 am, Seid Mohammed [EMAIL PROTECTED] wrote: Greetins all 1. I can easily run python file from a comand prompt just typing python filname.py. How can I do this from the python IDLE shell 2. How to create EXE in python. thanks all for making me to be more copnfortable with

Re: How to run Python file?

2006-09-03 Thread Steve Holden
mistral wrote: I have installed ActivePython http://www.activestate.com/Products/ActivePython/ How I can run Python file, test.py? Sheesh, you must have had ten replies and nobody bothered to point you to the frequently-asked questions ... kids today! http://www.python.org/doc/faq

Re: How to run Python file?

2006-09-03 Thread mistral
Steve Holden писал(а): mistral wrote: I have installed ActivePython http://www.activestate.com/Products/ActivePython/ How I can run Python file, test.py? Sheesh, you must have had ten replies and nobody bothered to point you to the frequently-asked questions ... kids today! http

Re: How to run Python file?

2006-09-03 Thread bearophileHUGS
mistral: I have installed ActivePython http://www.activestate.com/Products/ActivePython/ How I can run Python file, test.py? Running Python scripts is easy. Load the test.py from the ActivePython and run it. Otherwise you can just click on the file, otherwise you can open a shell in the dir

How to run Python file?

2006-09-02 Thread mistral
I have installed ActivePython http://www.activestate.com/Products/ActivePython/ How I can run Python file, test.py? -- http://mail.python.org/mailman/listinfo/python-list

Re: How to run Python file?

2006-09-02 Thread Pontus Ekberg
mistral wrote: I have installed ActivePython http://www.activestate.com/Products/ActivePython/ How I can run Python file, test.py? $ python test.py or $ ./test.py (if test.py is executable) -- http://mail.python.org/mailman/listinfo/python-list

Re: How to run Python file?

2006-09-02 Thread zefciu
Pontus Ekberg wrote: mistral wrote: I have installed ActivePython http://www.activestate.com/Products/ActivePython/ How I can run Python file, test.py? $ python test.py or $ ./test.py (if test.py is executable) Thats if you use un*x. If you word under windows, the first would

Re: How to run Python file?

2006-09-02 Thread Ant
zefciu wrote: Pontus Ekberg wrote: ... $ python test.py or $ ./test.py (if test.py is executable) Thats if you use un*x. If you word under windows, the first would work, As would: test.py Assuming python grabbed the .py extensions correctly (which it shouold have done with

Re: How to run Python file?

2006-09-02 Thread Rick Zantow
Ant [EMAIL PROTECTED] wrote in news:1157218244.750434.36220 @h48g2000cwc.googlegroups.com: zefciu wrote: Pontus Ekberg wrote: ... $ python test.py or $ ./test.py (if test.py is executable) Thats if you use un*x. If you word under windows, the first would work, As would:

Re: How to run Python file?

2006-09-02 Thread mistral
Rick Zantow писал(а): Ant [EMAIL PROTECTED] wrote in news:1157218244.750434.36220 @h48g2000cwc.googlegroups.com: zefciu wrote: Pontus Ekberg wrote: ... $ python test.py or $ ./test.py (if test.py is executable) Thats if you use un*x. If you word under windows, the first

Re: How to run Python file?

2006-09-02 Thread Rick Zantow
mistral [EMAIL PROTECTED] wrote in news:1157239512.139823.15650 @74g2000cwt.googlegroups.com: [...] Assuming I have Windows XP, and I installed ActiveState Python. No any other additional manipulations were done, no any PATHEXTes environment variables, etc, etc, nothing. How many preparatory

Re: How to run Python file?

2006-09-02 Thread Jason
mistral wrote: I have installed ActivePython http://www.activestate.com/Products/ActivePython/ How I can run Python file, test.py? You can open up the folder containing the test.py file, then double-click on the file to run it. A command-line window should pop up, and your program will run