帮助我使用 py2exe
我制作了我的程序,并在命令提示符中测试了它(通过进入目录)。然后我制作了一个安装文件,并将安装文件和我的程序放在同一个文件夹中。
我的安装文件:
from distutils.core import setup
import py2exe
setup(console=['C:\Python26\test\testprogram.py'])
我在命令提示符下运行安装程序(通过进入目录并收到以下错误:
我做错了什么?
这个程序还包含几个图片和模块,这可以链接到那个吗?
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:
What am I doing wrong?
Also this program contains several pictures and modules, could this be linked to that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
安装文件用于构建/安装用于分发的文件。您需要向 setup.py 提供命令:“./setup.py command”
浏览http://wiki.python.org/moin/Distutils/Tutorial和其他人在谷歌搜索上了解它。
Py2Exe 是 DistUtils 的附加命令,用于为 Win32 创建独立发行版。
所以在你的情况下应该
看看 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
Look at http://www.py2exe.org/index.cgi/Tutorial