py2exe似乎缺少以下模块

时间:2016-06-07 15:01:32

标签: python-2.7 py2exe

我已尝试使用setup py2exe文件:

from distutils.core import setup
import py2exe

setup(    windows=[{"script":"fisherexchart.py"}])

和另一种方式:

from distutils.core import setup
import py2exe

setup(=['fisherexchart.py'])  

这两种方式似乎都给我带来了丢失文件的相同错误。我使用py2exe并且从未遇到过这个但最近更新到Windows 10。不知道出了什么问题!

enter image description here

任何帮助都会受到赞赏。

由于

1 个答案:

答案 0 :(得分:0)

使用pyinstaller似乎更容易:

pyinstaller.exe nameofscript.py