How to check if the installed Anaconda is 32-bit or 64-bit? How to check if the installed Anaconda is 32-bit or 64-bit? python python

How to check if the installed Anaconda is 32-bit or 64-bit?


conda info has this information. If you need to access it programmatically, use conda info --json.


For CentOS 6.7 and miniconda2:

Type python and enter these commands:

import platformprint platform.architecture() 

In my case, it gives:

('32bit', '')


Open a standard python console, and in the header it should tell you

Python 2.7.8 (default, Jun 30 2014, 16:03:49) [MSC v.1500 32 bit (Intel)] on win32Type "help", "copyright", "credits" or "license" for more information.>>>