Created
October 4, 2013 14:20
-
-
Save kaydell/6826708 to your computer and use it in GitHub Desktop.
This bash script demonstrates how to specify that you want the script to use Python 3 rather than Python 2 which comes with Mac OS X.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
print(sys.version_info) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment