by John Heath | Sunday 30 August 2015 | Blog |
Background pip is a package management system used to install and manage software packages written in Python. It can be used to install any of the many packages found in the Python Package Index (PyPI). One major advantage of pip is the ease of its command-line...
by John Heath | Thursday 19 March 2015 | Blog |
If you’re using Python 2.6 above, you can use sys.maxsize to find out whether you have the 32-bit or the 64-bit version installed: import sys is_64bits = sys.maxsize > 2**32 print is_64bits Here’s a screenshot of example output:...