I use Bash on Windows, provided by MSYS.
I tried to run a Python file with a shebang of #!/usr/bin/env python, but I get this error message:
/usr/bin/env: python: No such file or directory
What can I do to make this work?
I know I can launch the Python file by suffixing it with python, but I want it to work without the suffix too.