Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which command to use for checking whether python is 64bit or 32bit

I am not able to find any command to check if my python is compiled for 32bit system or 64bit system.

I tried

python

and it only tells the version

Also when I go to python download site they have one version of python for linux but two versions for mac i.e 32bit and 64bit.

like image 384
Mirage Avatar asked May 24 '11 08:05

Mirage


People also ask

How do you check if my Python is 32 or 64-bit?

Python Version Bit – Does My Python Shell Run 32 Bit or 64 Bit Version? To check which bit version the Python installation on your operating system supports, simply run the command “ python ” (without quotes) in your command line or PowerShell (Windows), terminal (Ubuntu, macOS), or shell (Linux).

How do I know if I have Python 32?

Input the command python in the dos command line, press Enter key to run it. Then it will display some Python-related information. From the first text line, we can see the python is the 32-bit version ( MSC v.


1 Answers

For Python 2.6 and above, you can use sys.maxsize as documented here:

import sys is_64bits = sys.maxsize > 2**32 

UPDATE: I notice that I didn't really answer the question posed. While the above test does accurately tell you whether the interpreter is running in a 32-bit or a 64-bit architecture, it doesn't and can't answer the question of what is the complete set of architectures that this interpreter was built for and could run in. As was noted in the question, this is important for example with Mac OS X universal executables where one executable file may contain code for multiple architectures. One way to answer that question is to use the operating system file command. On most systems it will report the supported architectures of an executable file. Here's how to do it in one line from a shell command line on most systems:

file -L $(python -c 'import sys; print(sys.executable)') 

Using the default system Python on OS X 10.6, the output is:

/usr/bin/python: Mach-O universal binary with 3 architectures /usr/bin/python (for architecture x86_64):  Mach-O 64-bit executable x86_64 /usr/bin/python (for architecture i386):    Mach-O executable i386 /usr/bin/python (for architecture ppc7400): Mach-O executable ppc 

On one Linux system:

/usr/bin/python: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.26, stripped 

BTW, here's an example of why platform is not reliable for this purpose. Again using the system Python on OS X 10.6:

$ arch -x86_64 /usr/bin/python2.6 -c 'import sys,platform; print platform.architecture()[0], sys.maxsize > 2**32' 64bit True $ arch -i386 /usr/bin/python2.6 -c 'import sys,platform; print platform.architecture()[0], sys.maxsize > 2**32' 64bit False 
like image 62
Ned Deily Avatar answered Sep 24 '22 00:09

Ned Deily