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 platform
print platform.architecture()
In my case, it gives:
('32bit', '')