编程语言
首页 > 编程语言> > 在c中导入嵌入式python中的tensorflow时出错

在c中导入嵌入式python中的tensorflow时出错

作者:互联网

我的问题是在C程序中嵌入Python 3.5解释器以从C接收图像,并将其用作我训练的张量流模型的输入.当我在我的python代码中导入tensorflow库时,我得到一个错误(其他库工作正常).简化代码如下:

#include <string>
#include <windows.h>
#include <stdio.h>


int main()
{
    Py_InitializeEx(1);

    PyObject* sysPath = PySys_GetObject((char*)"path");
    PyObject* curDir = PyUnicode_FromString(".");
    PyList_Append(sysPath, curDir);
    Py_DECREF(curDir);


    PyRun_SimpleString("import tensorflow\n"
        "print(tensorflow.__version__)\n");


    Py_Finalize();
    return 0;
}

错误是:

ConsoleApplication5.exe – Ordinal Not Found

The ordinal 225 could not be located in the dynamic link library
libiomp5md.dll.

OK

按OK后,控制台中会出现此错误:

Intel MKL FATAL ERROR: Cannot load mkl_intel_thread.dll.

我的设置是在Windows 7 x64,Anaconda Python 3.5.2,tensorflow-1.1.0和CUDA 8上.

This是一个类似的问题,有不同的错误.

谢谢你的帮助.

解决方法:

我已经通过将libiomp5md.dll从python库文件夹复制到我的C代码目录来解决了这个问题.

标签:python,tensorflow,python-c-api,python-embedding
来源: https://codeday.me/bug/20191008/1875374.html