Snippets tagged “shebang”
2 snippets use this tag.
- Should I put #! (shebang) in Python scripts, and what form should it take?Python
You should include a shebang (#!) in Python scripts if you want the script to be directly executable from the command line.
- Why do people write #!/usr/bin/env python on the first line of a Python script?Python
The #!