Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (47.6k points)

Should I put the shebang in my Python scripts? In what form?

#!/usr/bin/env python

or

#!/usr/local/bin/python

Are these equally portable? Which form is used most?

1 Answer

0 votes
by (106k points)
edited by

To define the ability of the script shebang line is used and to be executed like a standalone executable without typing python beforehand in the terminal or when double clicking it in a file manager (when configured properly). It isn't necessary but generally put there so when someone sees the file opened in an editor, they immediately know what they're looking at. However, which shebang line you use IS important.

The Correct usage for Python 3 scripts is as follows:-

#!/usr/bin/env python3

To know more about this you can have a look at the following video tutorial:-

Related questions

0 votes
2 answers
0 votes
1 answer
0 votes
4 answers

Browse Categories

...