Python Launcher executable scripts Windows
Python programs can be launched by
python myprog.pyThe Python Launcher, on Windows allows running by simply
myprog.pybased on the shebang
#!/usr/bin/env pythonwhich works on Windows and Unix-like OS to search the user’s PATH for the desired Python executable.
Notes
Specific executables #!/usr/bin/python are only for specific situations like GNU Radio.
Generally, please use #!/usr/bin/env python.