你好世界py2exe giving strang的示例

2024-04-25 23:24:56 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个文件名为“迷你.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

有人知道是什么引起的吗?你知道吗


Tags: inpyselfmainlibpackageslinesite