I was trying py2exe on a simple script; if I'm correct, the command I have to use in the console to start building the .exe file is
build_exe myscript.py
but when I do this I get this error:
Traceback (most recent call last):
File "c:\program files (x86)\python37-32\lib\runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "c:\program files (x86)\python37-32\lib\runpy.py", line 85, in _run_code
exec(code, run_globals)
File "C:\Program Files (x86)\Python37-32\Scripts\build_exe.exe\__main__.py", line 9, in <module>
File "c:\program files (x86)\python37-32\lib\site-packages\py2exe\build_exe.py", line 141, in main
builder.analyze()
File "c:\program files (x86)\python37-32\lib\site-packages\py2exe\runtime.py", line 160, in analyze
self.mf.import_hook(modname)
File "c:\program files (x86)\python37-32\lib\site-packages\py2exe\mf3.py", line 120, in import_hook
module = self._gcd_import(name)
File "c:\program files (x86)\python37-32\lib\site-packages\py2exe\mf3.py", line 274, in _gcd_import
return self._find_and_load(name)
File "c:\program files (x86)\python37-32\lib\site-packages\py2exe\mf3.py", line 357, in _find_and_load
self._scan_code(module.__code__, module)
File "c:\program files (x86)\python37-32\lib\site-packages\py2exe\mf3.py", line 388, in _scan_code
for what, args in self._scan_opcodes(code):
File "c:\program files (x86)\python37-32\lib\site-packages\py2exe\mf3.py", line 417, in _scan_opcodes
yield "store", (names[oparg],)
IndexError: tuple index out of range
What am I doing wrong? Thanks!