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 point shebang notation to the correct locations on both Windows and Linux? If not, is there another way to allow implicit invocation of the Python interpreter on both Windows and Linux without having to modify the script when transferring between operating systems?

Edit: The shebang support on Windows is provided Cygwin, but I want to use the native Windows Python interpreter on Windows, not the Cygwin one.

Edit # 2: It appears that shebang notation overrides file associations in Cygwin terminals. I guess I could just uninstall Cygwin Python and symlink /usr/bin/python to Windows-native Python.

link|improve this question

66% accept rate
4  
I don't think windows has any sort of shebang support. You could try creating a file association with the python interpreter for .py files. – Nick ODell Sep 27 '11 at 19:16
Following up Nic ODell's comment: Anytime I've installed Python on a Windows box the installation process took care of creating the file association for .py files. This has always been using the Python installer for Windows from the python.org site. – GreenMatt Sep 27 '11 at 19:20
1  
Read PEP 397 and check out pylauncher. It lets you define custom shebang configurations in an ini (e.g. to use pypy), but out of the box you can use shebangs such as '#!/usr/bin/env python2.6', '#!/usr/bin/env python3.2', etc. – eryksun Sep 28 '11 at 3:49
feedback

3 Answers

Unless you are using cygwin, windows has no shebang support. However, when you install python, it add as file association for .py files. If you put just the name of your script on the command line, or double click it in windows explorer, then it will run through python.

What I do is include a #!/usr/bin/env python shebang in my scripts. This allows for shebang support on linux. If you run it on a windows machine with python installed, then the file association should be there, and it will run as well.

link|improve this answer
feedback

Not with shebang ... but you might be able to set up a file association, see this SO question which deals with Perl and the associated answers which will also be pertinent as there's known problems with Windows and stdin/out redirection...

link|improve this answer
feedback

Install pywin32. One of the nice thing is it setups the file association of *.py to the python interpreter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.