python在使用py2exe的时候发生了错误,请帮忙看看是什么原因
发布网友
发布时间:2022-06-28 23:36
我来回答
共1个回答
热心网友
时间:2023-10-11 03:22
整个流程是没错,不过存在以下问题:
1,在“setup.py”中输入以下代码:(这里重复了多次)
Python代码
#Start here
from distutils.core import setup
import py2exe
setup(console = ["hello.py"])
#End here
#Start here
from distutils.core importsetup
import py2exe
setup(console =["hello.py"])
#End here
“setup.py”只要就行:
from distutils.core importsetup
import py2exe
setup(console =["hello.py"])
2,你得确定你的py2exe版本 和你电脑上装的python版本相同
3,你可以尝试pyInstaller,因为py2exe还是有些不足之处,比如,你在xp打包的程序不能在win7上跑,而且还需要拷贝一些执行文件,当然py2exe打包的文件较小
4,如果你不介意的话,你可以把你的py文件发给我,我用py2exe打包试下。