• <legend id='Wm8xS'><style id='Wm8xS'><dir id='Wm8xS'><q id='Wm8xS'></q></dir></style></legend>
  • <small id='Wm8xS'></small><noframes id='Wm8xS'>

    <tfoot id='Wm8xS'></tfoot>

    • <bdo id='Wm8xS'></bdo><ul id='Wm8xS'></ul>
  • <i id='Wm8xS'><tr id='Wm8xS'><dt id='Wm8xS'><q id='Wm8xS'><span id='Wm8xS'><b id='Wm8xS'><form id='Wm8xS'><ins id='Wm8xS'></ins><ul id='Wm8xS'></ul><sub id='Wm8xS'></sub></form><legend id='Wm8xS'></legend><bdo id='Wm8xS'><pre id='Wm8xS'><center id='Wm8xS'></center></pre></bdo></b><th id='Wm8xS'></th></span></q></dt></tr></i><div id='Wm8xS'><tfoot id='Wm8xS'></tfoot><dl id='Wm8xS'><fieldset id='Wm8xS'></fieldset></dl></div>

        如何获取 Python 编译时使用的选项列表?

        时间:2023-09-14
            <bdo id='98oLo'></bdo><ul id='98oLo'></ul>
            <i id='98oLo'><tr id='98oLo'><dt id='98oLo'><q id='98oLo'><span id='98oLo'><b id='98oLo'><form id='98oLo'><ins id='98oLo'></ins><ul id='98oLo'></ul><sub id='98oLo'></sub></form><legend id='98oLo'></legend><bdo id='98oLo'><pre id='98oLo'><center id='98oLo'></center></pre></bdo></b><th id='98oLo'></th></span></q></dt></tr></i><div id='98oLo'><tfoot id='98oLo'></tfoot><dl id='98oLo'><fieldset id='98oLo'></fieldset></dl></div>

                  <tbody id='98oLo'></tbody>
              • <tfoot id='98oLo'></tfoot>
                  <legend id='98oLo'><style id='98oLo'><dir id='98oLo'><q id='98oLo'></q></dir></style></legend>

                • <small id='98oLo'></small><noframes id='98oLo'>

                  本文介绍了如何获取 Python 编译时使用的选项列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  您可以通过多种方式编译 Python.我想知道我的 Python 是用哪些选项编译的.

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

                  具体用例:我的 Python 是用 readline 编译的吗?我知道我可以通过import readline"看到这一点,但我想查看我的 Python 二进制文件的编译设置列表.

                  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.

                  我是指 Python 可执行文件,不是我自己编写的源代码.

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

                  推荐答案

                  有模块可以查看系统配置

                  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')
                  

                  也可以通过 shell 访问:

                  It is also accessible via shell:

                  python3 -m sysconfig | less
                  

                  python2.7之前必须使用

                  before python2.7, you have to use

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

                  这篇关于如何获取 Python 编译时使用的选项列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何使用 Sphinx 记录 Python 包 下一篇:Python 文件 - 相互导入

                  相关文章

                  最新文章

                  • <bdo id='LzH8B'></bdo><ul id='LzH8B'></ul>

                    <legend id='LzH8B'><style id='LzH8B'><dir id='LzH8B'><q id='LzH8B'></q></dir></style></legend>
                  1. <i id='LzH8B'><tr id='LzH8B'><dt id='LzH8B'><q id='LzH8B'><span id='LzH8B'><b id='LzH8B'><form id='LzH8B'><ins id='LzH8B'></ins><ul id='LzH8B'></ul><sub id='LzH8B'></sub></form><legend id='LzH8B'></legend><bdo id='LzH8B'><pre id='LzH8B'><center id='LzH8B'></center></pre></bdo></b><th id='LzH8B'></th></span></q></dt></tr></i><div id='LzH8B'><tfoot id='LzH8B'></tfoot><dl id='LzH8B'><fieldset id='LzH8B'></fieldset></dl></div>

                    <tfoot id='LzH8B'></tfoot>

                      <small id='LzH8B'></small><noframes id='LzH8B'>