Use '#!/usr/bin/env python3' vs. fixed path '/usr/bin/python3'

o Many installations have python3 installed elsewhere, such as
  /usr/local/bin/, etc.  Use the environment PATH variable to locate.
This commit is contained in:
Perry Kundert 2019-01-24 13:02:28 -08:00
parent e76c0e1a89
commit a3fe78f352

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
import csv import csv
import sys import sys