我有一个名为“ mini.py”的文件,其内容如下:
print("hello worlds")
如果我运行pip install py2exe --upgrade
,我会得到:
Requirement already up-to-date: py2exe in c:\python37\lib\site-packages (0.9.2.2)
如果我运行build_exe mini.py
,我会得到:
Traceback (most recent call last):
File "c:\python37\lib\runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "c:\python37\lib\runpy.py", line 85, in _run_code
exec(code, run_globals)
File "C:\Python37\Scripts\build_exe.exe\__main__.py", line 9, in <module>
File "c:\python37\lib\site-packages\py2exe\build_exe.py", line 141, in main
builder.analyze()
File "c:\python37\lib\site-packages\py2exe\runtime.py", line 160, in analyze
self.mf.import_hook(modname)
File "c:\python37\lib\site-packages\py2exe\mf3.py", line 120, in import_hook
module = self._gcd_import(name)
File "c:\python37\lib\site-packages\py2exe\mf3.py", line 274, in _gcd_import
return self._find_and_load(name)
File "c:\python37\lib\site-packages\py2exe\mf3.py", line 357, in _find_and_load
self._scan_code(module.__code__, module)
File "c:\python37\lib\site-packages\py2exe\mf3.py", line 388, in _scan_code
for what, args in self._scan_opcodes(code):
File "c:\python37\lib\site-packages\py2exe\mf3.py", line 417, in _scan_opcodes
yield "store", (names[oparg],)
IndexError: tuple index out of range
任何人都不知道是什么原因造成的吗?
答案 0 :(得分:1)
确实是Python - IndexError: tuple index out of range when using py2exe的副本
Py2exe 0.9.2.2适用于3.4或更高版本的Python,并且开发在那里停止。
对于Python 3.7,在GithUb中有一个移植Py2Exe的项目,可以很好地工作。 https://github.com/albertosottile/py2exe