如何使用py2exe打包Twisted程序?
我尝试使用 py2exe 打包 Twisted 程序,但是一旦运行我构建的 exe 文件,我收到“没有名为资源的模块”错误。
我发现 py2exe 说:
以下模块似乎缺少 ['FCNTL', 'OpenSSL', 'email.Generator', 'email.Iterators', 'email.Utils', 'pkg_resources', 'pywintypes', 'resource', ' win32api'、'win32con'、'win32event'、'win32file'、'win32pipe'、'win32process'、'win32security']
那么我该如何解决这个问题呢?
谢谢。
I tried to package a Twisted program with py2exe, but once I run the exe file I built, I got a "No module named resource" error.
And I found the py2exe said:
The following modules appear to be missing ['FCNTL', 'OpenSSL', 'email.Generator', 'email.Iterators', 'email.Utils', 'pkg_resources', 'pywintypes', 'resource', 'win32api', 'win32con', 'win32event', 'win32file', 'win32pipe', 'win32process', 'win32security']
So how do I solve this problem?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我以前见过这个……出于某种原因,py2exe 没有检测到 ZIP 存档中需要这些模块,因此将它们排除在外。
您可以显式指定要包含在 py2exe 命令行上的模块:
类似的东西。 阅读选项并进行实验。
I've seen this before... py2exe, for some reason, is not detecting that these modules are needed inside the ZIP archive and is leaving them out.
You can explicitly specify modules to include on the py2exe command line:
Something like that. Read up on the options and experiment.
电子邮件模块有同样的问题。 我通过在 setup.py 中显式包含模块来使其工作:
旧 setup.py:
新 setup.py:
Had same issue with email module. I got it working by explicitly including modules in setup.py:
OLD setup.py:
New setup.py: