[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

How to configure Python in Windows

Muddy Coder

2/28/2008 11:21:00 PM

Hi Folks,

I just downloaded precompiled Python for Windows, and it runs. Now I
have got the command line coding. However, I can't run my python
scripts. My python script, foo.py, is located in C:\\....\pydir, and I
have set the python interpreter on the directory. When I run
os.listdir(), I found my script of foo.py is right in the pydir. But,
when I tried to run command-line python foo.py, to compile it, I got
"Syntax error: invalid syntax". I guess the interpreter did not find
my script foo.py. In the past, I worked python on unix/linux, and I
knew how set the path, and I ran my python scripts smoothly. I wonder
anybody can help me to configure the python interpreter? Thanks!

Muddy Coder
4 Answers

Larry Bates

2/28/2008 11:53:00 PM

0

cosmo_general@yahoo.com wrote:
> Hi Folks,
>
> I just downloaded precompiled Python for Windows, and it runs. Now I
> have got the command line coding. However, I can't run my python
> scripts. My python script, foo.py, is located in C:\\....\pydir, and I
> have set the python interpreter on the directory. When I run
> os.listdir(), I found my script of foo.py is right in the pydir. But,
> when I tried to run command-line python foo.py, to compile it, I got
> "Syntax error: invalid syntax". I guess the interpreter did not find
> my script foo.py. In the past, I worked python on unix/linux, and I
> knew how set the path, and I ran my python scripts smoothly. I wonder
> anybody can help me to configure the python interpreter? Thanks!
>
> Muddy Coder

Syntax error is not give if interpreter can't find a script. You should post
full tracebacks on this newsgroup so we can help. It is more likely that you
actually have a syntax error in foo.py.

-Larry

Muddy Coder

2/29/2008 2:04:00 AM

0

On 2?28?, ??6?52?, Larry Bates <larry.ba...@websafe.com> wrote:
> cosmo_gene...@yahoo.com wrote:
> > Hi Folks,
>
> > I just downloaded precompiled Python for Windows, and it runs. Now I
> > have got the command line coding. However, I can't run my python
> > scripts. My python script, foo.py, is located in C:\\....\pydir, and I
> > have set the python interpreter on the directory. When I run
> > os.listdir(), I found my script of foo.py is right in the pydir. But,
> > when I tried to run command-line python foo.py, to compile it, I got
> > "Syntax error: invalid syntax". I guess the interpreter did not find
> > my script foo.py. In the past, I worked python on unix/linux, and I
> > knew how set the path, and I ran my python scripts smoothly. I wonder
> > anybody can help me to configure the python interpreter? Thanks!
>
> > Muddy Coder
>
> Syntax error is not give if interpreter can't find a script. You should post
> full tracebacks on this newsgroup so we can help. It is more likely that you
> actually have a syntax error in foo.py.
>
> -Larry

Hi Larry,

Thanks for help. I retried to run the script. My script is as simple
as:
import os

dir=os.getcwd()

print "cwd is",dir

The results are:

1) If I edit it with a text editor, and try to compile at Python
shell, the error message is: SyntaxError: invalid syntax
2) If I run the module by pressing F5, it ran, and printed out the
directory name

Can you figure it out? Thanks!


Dennis Lee Bieber

2/29/2008 6:55:00 AM

0

On Thu, 28 Feb 2008 18:04:23 -0800 (PST), cosmo_general@yahoo.com
declaimed the following in comp.lang.python:

> The results are:
>
> 1) If I edit it with a text editor, and try to compile at Python
> shell, the error message is: SyntaxError: invalid syntax
> 2) If I run the module by pressing F5, it ran, and printed out the
> directory name
>
> Can you figure it out? Thanks!
>
Must be a new class starting, two people in one day...

The interactive python prompt is just that, and interactive prompt
for python source lines.

If you have a file containing python code, you execute it from the
OS command prompt...

c:\tmp> python my_file.py
--
Wulfraed Dennis Lee Bieber KD6MOG
wlfraed@ix.netcom.com wulfraed@bestiaria.com
HTTP://wlfraed.home.netcom.com/
(Bestiaria Support Staff: web-asst@bestiaria.com)
HTTP://www.bestiaria.com/

Steve Holden

2/29/2008 2:42:00 PM

0

cosmo_general@yahoo.com wrote:
> Hi Folks,
>
> I just downloaded precompiled Python for Windows, and it runs. Now I
> have got the command line coding. However, I can't run my python
> scripts. My python script, foo.py, is located in C:\\....\pydir, and I
> have set the python interpreter on the directory. When I run
> os.listdir(), I found my script of foo.py is right in the pydir. But,
> when I tried to run command-line python foo.py, to compile it, I got
> "Syntax error: invalid syntax". I guess the interpreter did not find
> my script foo.py. In the past, I worked python on unix/linux, and I
> knew how set the path, and I ran my python scripts smoothly. I wonder
> anybody can help me to configure the python interpreter? Thanks!
>
http://www.python.org/doc/fa...

regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC http://www.hold...