Tagged Questions

22
votes
8answers
5k views

Why do people write #!/usr/bin/env python on the first line of a Python script?

It seems to me like the files run the same without that line.
11
votes
7answers
339 views

Is there a standard way to make sure a python script will be interpreted by python2 and not python3?

Is there a standard way to make sure a python script will be interpreted by python2 and not python3? On my distro, I can use #!/usr/bin/env python2 as the shebang, but it seems not all distros ship ...
10
votes
4answers
2k views

Python deployment and /usr/bin/env portability

At the beginning of all my executable Python scripts I put the shebang line: #!/usr/bin/env python I'm running these scripts on a system where env python yields a Python 2.2 environment. My scripts ...
7
votes
6answers
2k views

Python source header comment

What is the line #!/usr/bin/env python in the first line of a python script used for?
6
votes
4answers
690 views

how to make a python or perl script portable to both linux and windows?

I was wondering how to make a python script portable to both linux and windows? One problem I see is shebang. How to write the shebang so that the script can be run on both windows and linux? Are ...
5
votes
6answers
199 views

What does the symbol “#!” mean in Python?

What does this line of code mean? Without it, my python3 http server can't understand and let the browser download an empty .py file (depend on the link to the .py file) #! /usr/local/bin/python3
4
votes
1answer
157 views

What's the difference between these two python shebangs

I used to use the shebang #!/usr/bin/env python When is it better to use #!/usr/bin/python What is the exact difference between them? Thanks.
4
votes
4answers
813 views

Cannot pass an argument to python with “#!/usr/bin/env python”

I needed to have a directly executable python script, so i started the file with #!/usr/bin/env python. However, I also need unbuffered output, so i tried #!/usr/bin/env python -u, but that fails with ...
3
votes
3answers
177 views

should i put #! (shebang) in python scripts

should i put the shebang in my python scripts -- and if yes -- what form? #!/usr/bin/env python or #!/usr/local/bin/python i know the first one is "more portable" -- but i want to know what ...
3
votes
2answers
286 views

Executing python scripts with subprocess.call using shebang

I'm writing a (somewhat) modular application in Python 3 and I'd like to run arbitrary programs from it, said program being specified at runtime and not necessarily a python script. So I use for ...
2
votes
2answers
520 views

Read the first line of batch file from the same batch file?

I have a batch file that tries to run the program specified in its first line. Similar to Unix's shebang: C:\> more foo.bat #!C:\Python27\python.exe %PYTHON% foo-script.py C:\> What I want to ...
1
vote
2answers
45 views

Shell script change shell in between

I've a shell script with two shebangs, the first one tells #!/bin/sh and after a few lines the other one is #!/usr/bin/env python. When this script is given executable permission and ran as ...
1
vote
4answers
186 views

How to start python programs with appropriate python version?

Given a set of python programs: /tool/a.py /tool/b.py /tool/c.py /tool/d.py ... that are stored in a shared network directory, executed in a mixed environment (Solaris and different flavors of ...
1
vote
2answers
191 views

Why doesn't virtualenv on Windows associate .py/.pyw/.pyo/.pyc files with virtualenv's version of Python executables?

What is the reason virtualenv does not associate .py(w) files with virtualenv's version of Python executables? This seems like an ideal task for virtualenv on Windows taking into consideration that ...
1
vote
3answers
735 views

What to reference in the shebang python26 or python2.6

For a Python script I need a specific Python version. Now my installation of Python 2.6 contains both python26 and python2.6 Which one should I put in the shebang? Option 1: #!/usr/bin/env ...
1
vote
6answers
110 views

How do I find where Python is located on Unix?

I'm working on a new server for a new workplace, and I'm trying to reuse a CGI script I wrote in Python earlier this year. My CGI script starts off with #!/local/usr/bin/python But when I run this ...
1
vote
1answer
430 views

git error: cannot spawn .git/hooks/post-commit: No such file or directory

I'm trying to write a post-commit hook, I have a Git repository on a mapped drive (V:), msysgit installed in C:\Git, and Python in C:\Python26. I'm running TortoiseGit on Windows 7 64 Bit. The ...
1
vote
2answers
208 views

Running python 64 with shebang (#!) on Mac

I use python 64bit as follows. alias python64='arch -x86_64 /usr/bin/python2.6' How can I run python 64bit mode with shebang(#!)? ??? #!/usr/bin/python2.6 ???
0
votes
3answers
225 views

Shebang Notation: Python Scripts on Windows and Linux?

I have some small utility scripts written in Python that I want to be usable on both Windows and Linux. I want to avoid having to explicitly invoke the Python interpreter. Is there an easy way to ...
0
votes
3answers
138 views

Python Script: Runs in Shell but fails in real life because cant import module

I have a script that runs fine in the Python Shell, but when double clicked it fails to import the PIL module(but it does import the PIL module in the Shell). What is wrong? Do I need a different ...
0
votes
1answer
721 views

How to make python scripts executable on Windows 7 after installing Python 3.1.2?

When I use python on Linux, or even Mac OS from command line, I take advantage of the shebang and run some of my scripts directly, like so: ./myScript.py. I do need to give this script executable ...
-1
votes
1answer
31 views

Shebang conflict with doxygen

Does doxygen doesn't work properly on python script with a shebang? I tried one python script with shebang to my company's tool directory and ran doxygen. It was not able to display namespace ...