#python #interpreter #script #find #configuration #search #matching

python-config

获取 Python 解释器配置的实用程序包

1 个不稳定版本

0.1.0 2020年7月26日

#613配置


用于 torch-build

MIT 许可证

7KB
135

python-config

此包包含定位和获取 Python 解释器配置信息的功能。

典型用法可能是将此包用于构建脚本中以搜索 Python 解释器

use python_config::find_interpreter_matching;

fn main() {
    let interpreter_config = find_interpreter_matching(|c| c.version.major >= 3)
        .expect("Could not find Python 3 interpreter");

    // Use interpreter_config to configure your package.
}

请参阅 examples/print_info 以了解如何使用此包的更完整演示。

贡献

目前这个库非常基础;如果您觉得这个功能很有用,所有 PR 都欢迎扩展这个包以使其更完整。

无运行时依赖