gpt4 book ai didi

python - 如何在 C++ 代码中调用 python 脚本?

转载 作者:行者123 更新时间:2023-11-30 02:47:38 27 4
gpt4 key购买 nike

在我的 C++ 应用程序中,我想调用一个 Python 脚本来做一些处理工作。我在 Google 中搜索过,发现有两种方法可以做到这一点:

    (1). use the `system` command. Just like this, `system('python myscript.py');`
(2). use the `PyRun_SimpleString("execfile('myscript.py')");`

我想问一下,哪种方式更好,有没有更好的方式来完成这项工作?

谢谢。

最佳答案

I want to ask that, which way is better and is there any better way to do this work?

您应该注意到 python 引擎是用 C 编写的,因此提供了一个 native C-API .这使您可以通过调用函数和使用 Python 对象更直接地与 Python 代码交互。

如果您想从 C++ 代码集成它而不用麻烦 C-API,可以使用出色且易于使用的 boost::python图书馆。

关于python - 如何在 C++ 代码中调用 python 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22603141/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com