Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
519 views
in Technique[技术] by (71.8m points)

bash - run python script directly from command line

#!/usr/bin/env python

I put that at the top of a script. I've seen that should make the script runnable from the command line without the need for python programname.py. Unless I'm misunderstanding I should be able to use programname.py as long as I have the above line at the top of the script. Is this correct?

It isn't working for me I just get an error indicating that I would have to use python at the beginning of the 'call'.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Universal running of Python scripts

You can pretty much universally run without the shebang (#!) with

python myscript.py

Or nearly equivalently (it places the current directory on your path and executes the module named myscript) (preferably do this!):

python -m myscript

from the command line, as long as you have Python installed and on your path environment variable (i.e. set to run with python, which, if installed, would typically be the case).

Shebangs (#!) are a Unix thing.

The shebang, as you're using it, is typically for running on a Unix platform (typically Apple or Linux). Windows would typically require cygwin to use the shebang.

You can usually default to whatever python is available on your system path with:

#!/usr/bin/env python

Assuming you're on a Unix, you might try other locations for your python setup, like:

#!/usr/bin/python

Muddling through

You can see what python you're currently using by using the unix which command, so if you want to see where your python is coming from, use this command:

which python

or on Windows (cygwin probably can run the shebang):

where python

On Linux/Unix, you'll need execution perms to run the file as well, in that manner. Use chmod

chmod +x myscript.py

(chmod also may apply to Cygwin in Windows)

If you're not running as root, you may require sudo, and that would be

sudo chmod +x myscript.py

And then attempt to run (within the same directory) with

./myscript.py 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...