BasioMeusPuga / twitchy

CLI streamlink wrapper for twitch.tv
GNU General Public License v3.0
91 stars 14 forks source link

Use the python3 binary defined by the system's environment #5

Closed michael-lazar closed 7 years ago

michael-lazar commented 7 years ago

It's good practice to use /usr/bin/env python3 in your shebang, instead of hardcoding the path to the python executable. The reason is that different operating systems might install python to different locations. For example, on my distribution (mac OS), python 3 is located in /usr/local/bin/python3.

https://askubuntu.com/a/716281

BasioMeusPuga commented 7 years ago

Of course. Hindsight is 20/20.