为什么在 VISTA 中实现并运行良好的 Pyqt 应用程序无法在 Windows XP 中运行?

发布于 2024-10-28 03:08:39 字数 129 浏览 0 评论 0 原文

总之,我用 PyQt 在我的笔记本电脑(vista)上实现了一个应用程序,它运行得很好。但是如果我想在Windows XP系统的桌面上运行它,就出现了错误!它说配置错误。原因是什么(我的意思是我使用哪个系统重要吗??)以及如何解决它?谢谢!!!

all, I implemented an application in my laptop (vista) with PyQt and it worked quite well. But if I want to run it in a desktop of Windows XP system, an error occured! It says the configuration was wrong. What is the reason (by this i mean does it matter which system I used??)and how to solve it please? thanks!!!

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

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

发布评论

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

评论(1

梦在深巷 2024-11-04 03:08:39

更多信息会很有用,但这听起来很熟悉我在使用 py2exe 冻结应用程序时遇到的问题。这是您的确切错误消息吗?:

应用程序无法启动,因为应用程序配置不正确。
重新安装应用程序可能会解决该问题。

我设法通过安装 Microsoft Visual C++ 2008 SP1 可再发行组件包,来自 http://download.microsoft.com

这是我在使用 py2exe 时遇到的错误。切换到 PyInstaller(它在冻结期间捆绑运行时)后,问题就消失了在 XP 计算机上安装 C++ 运行时。甚至可能有一种使用 py2exe 捆绑运行时的方法,但我还没有看过。

More info would be useful, but this sounds familiar to a problem I had when freezing apps using py2exe. Is this your exact error message?:

The application has failed to start because the application configuration is incorrect.
Reinstalling the application may fix the problem.

I managed to get around this by installing the Microsoft Visual C++ 2008 SP1 Redistributable Package from http://download.microsoft.com.

This was an error I had when using py2exe. After switching over to PyInstaller, which bundles the runtimes during freezing, the problems went away without having to install the C++ runtimes on an XP machine. There may even be a way to bundle the runtimes using py2exe, but I've not looked.

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