Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Zenahr/900212bff56ab6ca320191701a06b5bc to your computer and use it in GitHub Desktop.
Save Zenahr/900212bff56ab6ca320191701a06b5bc to your computer and use it in GitHub Desktop.
how to check if current terminal REALLY is running Python 64 bit
import sys
print(sys.maxsize > 2**32) # true if running 64 bit Python
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment