为什么在 VISTA 中实现并运行良好的 Pyqt 应用程序无法在 Windows XP 中运行?
总之,我用 PyQt 在我的笔记本电脑(vista)上实现了一个应用程序,它运行得很好。但是如果我想在Windows XP系统的桌面上运行它,就出现了错误!它说配置错误。原因是什么(我的意思是我使用哪个系统重要吗??)以及如何解决它?谢谢!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更多信息会很有用,但这听起来很熟悉我在使用 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.