Am 12.10.13 08:34, schrieb John Nagle:
I'm trying to find out which version of glibc Python is using.
I need a fix that went into glibc 2.10 back in 2009.
(http://udrepper.livejournal.com/20948.html)

So I try the recommended way to do this, on a CentOS server:

/usr/local/bin/python2.7
Python 2.7.2 (default, Jan 18 2012, 10:47:23)
[GCC 4.4.6 20110731 (Red Hat 4.4.6-3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
import platform
platform.libc_ver()
('glibc', '2.3')

Try

        ldd /usr/local/bin/python2.7

Then execute the reported libc.so, which gives you some information.

Christian


--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to