PyQt4 - “有关详细信息,请参阅日志文件”错误
我使用 Python 制作了一个应用程序,最近我发现我可以使用 py2exe 为 Windows 制作可执行文件。
问题是我正在使用的库(xmpppy)产生此错误
DeprecationWarning:md5 模块已弃用;使用 hashlib 代替
,当我尝试运行可执行文件时,会出现一个对话框,显示以下内容
有关详细信息,请参阅日志文件“C:\Python26\P2E\MyApp\dist\MyApp.exe.log”
有什么想法可以解决这个问题吗?
I have made an application using Python and recently i found that i can use py2exe to make executables for windows.
The problem is that a library i am using (xmpppy) produces this error
DeprecationWarning: the md5 module is deprecated; use hashlib instead
and when i try to run the executable a dialog appears saying this
See the logfile 'C:\Python26\P2E\MyApp\dist\MyApp.exe.log' for details
any ideas how to fix that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试在
import sys
中包含以下几行。有关详细信息,您可以阅读 这个
You can try including the following lines down
import sys
For more information you can read this
当 python 脚本 .py 有任何错误时,它会显示在控制台中,但是当您运行 python .exe 文件时,它会生成 .exe.log 文件,当错误accured.so 转到您的文件夹并查看那里有一个 .exe.log 文件时显示错误。
when a python script .py has any error it shows in console but when you run python .exe file it genrates .exe.log file when error accured.so go to your folder and see that there is a .exe.log file is there showing errors.