up vote 1 down vote favorite
1
share [g+] share [fb]

How do I check if my python and mysql are 32 bit installations or 64 bit?

link|improve this question

69% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You can use the file command :

file `which python`

file `which mysql`

The file command is available on all UNIX-based systems.

link|improve this answer
feedback
readelf -h $(which mysqld) | grep Class
readelf -h $(which python) | grep Class

Seems to work for me. The readelf command is part of the GNU binutils.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.