py2exe,问题

发布于 2024-09-12 22:21:09 字数 496 浏览 8 评论 0原文

我正在尝试将 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隱形的亼 2024-09-19 22:21:09

使用 Gui2exe 可以很聪明,我将它用于控制台和 GUI。

这是我使用过的脚本,并且运行良好。

from distutils.core import setup
import py2exe
import sys

if len(sys.argv) == 1:
    sys.argv.append("py2exe")

setup( options = {"py2exe": {"compressed": 1, "optimize": 2, "ascii": 1, "bundle_files": 3}},
       zipfile = None,

       ## data_files = ['apple.jpg', 'cheese.jpg'],

       #Your py-file can use windows or console
       windows = [{"script": 'my.py'}])

Useing Gui2exe can be smart,i use it to both console and gui.

Here is a script i have used,and have worked ok.

from distutils.core import setup
import py2exe
import sys

if len(sys.argv) == 1:
    sys.argv.append("py2exe")

setup( options = {"py2exe": {"compressed": 1, "optimize": 2, "ascii": 1, "bundle_files": 3}},
       zipfile = None,

       ## data_files = ['apple.jpg', 'cheese.jpg'],

       #Your py-file can use windows or console
       windows = [{"script": 'my.py'}])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文