Making `#!/usr/bin/env python` work on Windows
Use the proper path where Python is installed instead, for example:
#!c:/Python/python.exe
If you have Unix-like path support on your system (I'm not familiar with MSYS), you can always enter the path to your python
executable, i.e. the output of which python
.
You might be interested in a Python Launcher For Windows