尝试将 python 嵌入到 Visual Studio 2010 c++文件,退出并显示代码 1

发布于 2024-10-02 19:19:05 字数 256 浏览 2 评论 0原文

我试图在我使用 ms Visual Studio C++ 2010 开发的 C++ 应用程序中嵌入一些 Python 代码。但是当我运行该程序时,当我调用 Py_initialize() 时,它会以代码 0x01 退出。

我不知道如何找出问题所在。帮助文件说,Py_Initialize不能返回错误值,它只会致命失败。 但是,为什么失败了呢?

我使用的是自编译的 python27_d.dll,它是我使用 python.org 源下载中的 msvs 项目文件创建的。

I am trying to embed some python code in a c++ application i am developing with ms visual studio c++ 2010. But when i run the program, it exits with code 0x01 when i call Py_initialize().

I dont know how to find out what went wrong. the help file says, Py_Initialize can't return an error value, it only fails fataly.
But, why did it fail?

I am using a self-compiled python27_d.dll, which i created with the msvs project files in the source downloads from python.org.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风追烟花雨 2024-10-09 19:19:05

您可以从 python sdk 中开始使用 Py_Initilize 代码的简单“hello world”类型示例吗?

这至少会告诉您编译器环境设置是否正确,或者错误是否出在您的使用中。

Is there simple 'hello world' type example of the Py_Initilize code in the python sdk you can start with?

That will at least tell you if you have the compiler environment setup correctly, or if the error is in your usage.

回梦 2024-10-09 19:19:05

好吧,我终于发现出了什么问题。
我确实使用与程序本身相同的 VC10 编译了 python27_d.dll。
但我的程序通常编译为 64 位可执行文件。我只是忘了编译 x64 的 dll。我不认为这会导致如此烦人的行为,因为我相信那时我会收到链接错误。

Well, i finally found out what went wrong.
I did compile my python27_d.dll with the same VC10 as my program itself.
But my program is normally compiled as 64 bit executable. I just forgot to compile the dll for x64, too. I didnt think this would lead to such annoying behavoiur, as i believed i would get a linkr error then.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文