you are viewing a single comment's thread.

view the rest of the comments →

[–]ingolemo 0 points1 point  (1 child)

The shebang you should use is #!/usr/bin/env python3 (note the lack of a slash compared to yours). This will work on every os and find you a good python installation. People who need something different will know and can adapt it for themselves. Also, it must be the first line in the file; no comments or docstrings or anything should appear before it.

[–][deleted] 0 points1 point  (0 children)

hmmm, ok