小编典典

python37.dll未在可执行文件中链接

python

我用python扩展了c ++,但是exectuable不能在没有安装python的系统上运行。

#include "C:\.....python.h"

int main()
{
    Py_Initialize();
    PyRun_SimpleString("print("hello world")\n")
Py_Finalize();
return 0;
}

当我在未安装python的Windows系统上运行时,出现以下错误:

The code execution cannot proceed because python37.dll was not found. Reinstalling the program may fix the problem.

如何将python37.dll链接到可执行文件。


阅读 319

收藏
2021-01-20

共1个答案

小编典典

根据定义,DLL是一个动态链接的库,它是一个单独的模块,可以在运行时进行查找和解析。

如果未安装Python,则您的应用程序将无法运行。

您需要将Python与应用程序捆绑在一起,或者在安装应用程序之前/期间安装Python。

另外,您可以尝试与Python静态链接,在这种情况下,它将成为可执行文件的一部分,无需单独安装。

2021-01-20