gpt4 book ai didi

python - 在 C++ 应用程序中包含第 3 方 python 模块

转载 作者:太空宇宙 更新时间:2023-11-04 13:47:38 25 4
gpt4 key购买 nike

我正在尝试构建一个应用程序来解析 C++ 中的 netCDF4 文件。

我做了什么:

  • 成功用python脚本解析文件。

我需要什么帮助:

  • 将我的 python 脚本作为一个模块包含在内。当我运行我的 C++ 程序时,它会提示无法访问 numPy。

我所知道的:

  • 我通过复制我的 c++ 可执行文件所在的 netCDF4.pyd 文件解决了与 netCDF4 相同的问题,但找不到 numPy。等价物。

感谢您的任何建议。

最佳答案

欢迎来到社区!我希望我能正确理解这个问题——它是将 python 模块导入到 C++ 中吗?如果是这样,请尝试以下教程:Embedding Python in C/C++: Part I .

基本上,换句话说,不要使用代码转换或翻译 - 它不必要地复杂。只需按如下方式使 python 代码与 C 代码通信即可。感谢上面网站的代码,我的评论。

#include <Python.h> //get the scripts to interact

int main(int argc, char *argv[])
{
PyObject *pName, *pModule, *pDict, *pFunc, *pValue; //Arguments that are required.

if (argc < 3)
{
printf("Usage: exe_name python_source function_name\n");
return 1;
}

// Allow your program to understand python
Py_Initialize();

// Initialize Name
pName = PyString_FromString(argv[1]);

// Import the module from python
pModule = PyImport_Import(pName);

// pDict is a borrowed reference
pDict = PyModule_GetDict(pModule);

// same situiation as above
pFunc = PyDict_GetItemString(pDict, argv[2]);

if (PyCallable_Check(pFunc))
{
PyObject_CallObject(pFunc, NULL);
} else
{
PyErr_Print();
}

// Tidy Everything Up.
Py_DECREF(pModule);
Py_DECREF(pName);

// End interpreter
Py_Finalize();

return 0;
}

不过,我建议您阅读上面的教程。

希望这对您有所帮助!

关于python - 在 C++ 应用程序中包含第 3 方 python 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25192125/

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