py2exe,问题
我正在尝试将 .py 文件转换为 .exe 文件。但是,我得到了一个奇怪的输出。
输出:
usage: module1 [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: module1 --help [cmd1 cmd2 ...]
or: module1 --help-commands
or: module1 cmd --help
error: no commands supplied
我的代码:
from distutils.core import setup
import py2exe
setup(console=['newstyledemo.py'])
另外,完成此操作后,我在哪里恢复 .exe 文件?我想将其放在闪存驱动器上以便重新分发。
顺便说一句,我在 Windows-7 上运行 Python 2.6
I'm attempting to convert a .py file to a .exe file. However, I get a weird output.
Output:
usage: module1 [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: module1 --help [cmd1 cmd2 ...]
or: module1 --help-commands
or: module1 cmd --help
error: no commands supplied
My code:
from distutils.core import setup
import py2exe
setup(console=['newstyledemo.py'])
Also when this is done where do I recover the .exe file? I'd like to place it on a flash drive for redistribution.
I'm running Python 2.6 on Windows-7, BTW
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Gui2exe 可以很聪明,我将它用于控制台和 GUI。
这是我使用过的脚本,并且运行良好。
Useing Gui2exe can be smart,i use it to both console and gui.
Here is a script i have used,and have worked ok.