How to get the list of options that Python was compiled with?

Niels Bom picture Niels Bom · Apr 17, 2012 · Viewed 27.5k times · Source

You can compile Python in various ways. I'd like to find out with which options my Python was compiled.

Concrete use-case: was my Python compiled with readline? I know I can see this by doing "import readline", but I'd like to see a list of compilation setting for my Python binary.

Edit: I mean the Python executable and not source code written by myself.

Answer

mirk picture mirk · Apr 17, 2012

There is a module to see the system config

import sysconfig
print(sysconfig.get_config_vars())

It offers an interface to get individual variables as well.

sysconfig.get_config_var('HAVE_LIBREADLINE')

Edit:

before python2.7, you have to use

import distutils.sysconfig
print distutils.sysconfig.get_config_vars()