zoukankan      html  css  js  c++  java
  • py_initialize:C调Python出错 是初始化错误?

    还是pythonpath和pythonname变量没有配置正确?

    py_initialize()方法是什么?

    In an application embedding Python, this should be called before using any other Python/C API functions; with the exception of Py_SetProgramName(), Py...

    在嵌套Python的应用中,应该在使用任何Python/C API方法之前调用该方法;

    C++调Python示例

    https://www.cnblogs.com/Hisin/archive/2012/02/27/2370590.html

    程序刚开始运行到Py_Initialize()函数,报错:ImportError:Nomodulenamedsite如遇到这个函数报错那么基本上就是你没有将相关路径添加到环境变量中。两个方法:一个就是补全python的环境变量。另一个就是手动设置初始化函数的搜寻路径(也就是加载路径)环境变量设置方法自己去找网上一堆。手动添加搜寻路径函数为:Py_SetPythonHome("python的安装路径");//如:C:/Python27;只需要到最外层就可以啦

    程序刚开始运行到Py_Initialize()函数,报错:ImportError: No module named site

    如遇到这个函数报错那么基本上就是你没有将相关路径添加到环境变量中。

    两个方法:

    一个就是补全python的环境变量。

    另一个就是手动设置初始化函数的搜寻路径(也就是加载路径)

    环境变量设置方法自己去找网上一堆。 手动添加搜寻路径函数为:Py_SetPythonHome("python的安装路径");//如:C:/Python27;只需要到最外层就可以啦 以上是关于vs2010调用python中Py_Initialize函数报错的原因的内容,更多 调用 initialize 函数 原因 Python Vs2010 关于 py 的内容,请您使用右上方搜索功能获取相关信息。

    C++调用Python Py_Initializez中断: 2017年11月13日 19:58:40 weixin_38105245 阅读数:1690 C++中调用Python代码,但是在Py_Initialize函数调用时就中断了,程序是64位的 python是3.5.3的64位版本 。 简单的调用代码如下: #include "stdafx.h" #include "Python.h" int _tmain(int argc, _TCHAR* argv[]) { Py_Initialize(); Py_Finalize(); return 0; } 运行结果: 'TestEmbedPython.exe' (Win32): Loaded 'C:WindowsSysWOW64advapi32.dll'. Cannot find or open the PDB file. 'TestEmbedPython.exe' (Win32): Loaded 'C:WindowsSysWOW64sechost.dll'. Cannot find or open the PDB file. 'TestEmbedPython.exe' (Win32): Loaded 'C:WindowsSysWOW64 pcrt4.dll'. Cannot find or open the PDB file. 'TestEmbedPython.exe' (Win32): Loaded 'C:WindowsSysWOW64sspicli.dll'. Cannot find or open the PDB file. 'TestEmbedPython.exe' (Win32): Loaded 'C:WindowsSysWOW64cryptbase.dll'. Cannot find or open the PDB file. 'TestEmbedPython.exe' (Win32): Loaded 'C:WindowsSysWOW64shell32.dll'. Cannot find or open the PDB file. 'TestEmbedPython.exe' (Win32): Loaded 'C:WindowsSysWOW64shlwapi.dll'. Cannot find or open the PDB file. 'TestEmbedPython.exe' (Win32): Loaded 'C:Windowswinsxsx86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4940_none_50916076bcb9a742msvcr90.dll'. Cannot find or open the PDB file. 'TestEmbedPython.exe' (Win32): Loaded 'C:WindowsSysWOW64imm32.dll'. Cannot find or open the PDB file. 'TestEmbedPython.exe' (Win32): Loaded 'C:WindowsSysWOW64msctf.dll'. Cannot find or open the PDB file. The program '[43084] TestEmbedPython.exe' has exited with code 1 (0x1). 没有任何错误提示 运行到Py_Initialize 程序直接崩溃 ---------------------------------------------------------------------------------------------- 搞了一天终于搞明白,解决方案是在Py_Initialize函数前加一行Py_SetPythonHome(L"D:\Python35")
  • 相关阅读:
    007_2 (变式)青蛙跳台阶
    008 二进制中1的个数
    009 数值的整数次方
    007_1 斐波那契数列的非递归解法
    Linux TTY函数跟踪
    Linux UART介绍
    Linux TTY介绍
    Linux音频编程
    Jasper语音助理
    Raspberry Pi使用
  • 原文地址:https://www.cnblogs.com/2008nmj/p/8027430.html
Copyright © 2011-2022 走看看