py2app argv 模拟错误
我正在尝试使用 py2app 构建一个应用程序,但是当我这样做时:
py2applet csSlates.py --iconfile csSlateCreator.png
我没有在应用程序中看到图标,并且收到以下错误消息:
错误:64 位可执行文件不支持 argv-emulation
我能做什么?
I'm trying to build an app using py2app
but when I do:
py2applet csSlates.py --iconfile csSlateCreator.png
I dont get the icon in the app and I get this error message:
error: argv-emulation is not supported for 64-bit executables
What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您还没有弄清楚,该图标文件需要采用 .icns 格式。
您可以使用此实用程序来转换它:
http://projects.digitalwaters.net/index.php?q=fasticns_download
如果你还没有运行 --make-setup 选项,你也需要这样做。
py2applet --make-setup csSlates.py --iconfile csSlateCreator.icns
If you haven't figured it out already, that icon file needs to be in .icns format.
you can use this utility to convert it:
http://projects.digitalwaters.net/index.php?q=fasticns_download
if you haven't run the --make-setup option you'd need to do that as well.
py2applet --make-setup csSlates.py --iconfile csSlateCreator.icns
我遇到了同样的问题,并通过使用 Python 2.5 而不是 2.7 解决了它。
I experienced the same problem and resolved it by using Python 2.5 rather than 2.7.