帮助我使用 py2exe

发布于 2024-09-16 07:36:36 字数 369 浏览 7 评论 0原文

我制作了我的程序,并在命令提示符中测试了它(通过进入目录)。然后我制作了一个安装文件,并将安装文件和我的程序放在同一个文件夹中。

我的安装文件:

from distutils.core import setup
import py2exe

setup(console=['C:\Python26\test\testprogram.py'])

我在命令提示符下运行安装程序(通过进入目录并收到以下错误:

alt text

我做错了什么?

这个程序还包含几个图片和模块,这可以链接到那个吗?

I made my program, and tested it in Command Prompt(by entering in the directory). Then I made a set up file, and put the setup file and my program in the same folder.

My setup file:

from distutils.core import setup
import py2exe

setup(console=['C:\Python26\test\testprogram.py'])

I went to run the setup program in command prompt(by entering in the directory and got the following error:

alt text

What am I doing wrong?

Also this program contains several pictures and modules, could this be linked to that?

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

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

发布评论

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

评论(1

客…行舟 2024-09-23 07:36:36

安装文件用于构建/安装用于分发的文件。您需要向 setup.py 提供命令:“./setup.py command”
浏览http://wiki.python.org/moin/Distutils/Tutorial和其他人在谷歌搜索上了解它。

Py2Exe 是 DistUtils 的附加命令,用于为 Win32 创建独立发行版。

所以在你的情况下应该

setup.py py2exe

看看 http://www.py2exe.org/index.cgi /教程

The setup file is used to build / install files for distribution. you need to provide command to setup.py : "./setup.py command"
Go through, http://wiki.python.org/moin/Distutils/Tutorial and others on google search to understand it.

Py2Exe is an additional command to DistUtils, that creates standalone distributions for Win32.

so in your case it should be

setup.py py2exe

Look at http://www.py2exe.org/index.cgi/Tutorial

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