py2exe 不生成 exe 吗?
我正在关注此网站 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要构建 exe,命令是:
To build an exe, the command is: