py2exe 不生成 exe 吗?

发布于 2024-09-07 07:14:49 字数 568 浏览 1 评论 0原文

我正在关注此网站 http://www.py2exe.org/index.html 的 py2exe 教程。 cgi/教程 这是设置代码:

from distutils.core import setup
import py2exe

setup(console=['script.py'])

当我输入 cmd:

python setup.py install 

我得到这个:

running install
running build

我的脚本工作正常,我什至尝试过简单的脚本,例如

print "hello world"

我之前能够使用 py2exe 没有任何问题,但由于某种原因它停止为我工作。我什至尝试重新安装该模块,但仍然没有任何作用。堆栈溢出方面那些才华横溢的人有什么想法吗?

I am following the tutorial for py2exe from this site http://www.py2exe.org/index.cgi/Tutorial
this is the setup code:

from distutils.core import setup
import py2exe

setup(console=['script.py'])

when I type in cmd:

python setup.py install 

I get this:

running install
running build

my script works fine and I even tried it for simple scripts such as

print "hello world"

I was able to use py2exe before without any problems but for some reason it stop working for me. I even tried to reinstall the module but it still won't do anything. Any idea's from those brilliant minds on stack overflow?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你丑哭了我 2024-09-14 07:14:49

要构建 exe,命令是:

python setup.py py2exe

To build an exe, the command is:

python setup.py py2exe
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文