【解决】Pyinstaller打包报错IndexError: tuple index out of range

问题

这个问题主要是在Python3.7以上的版本中遇到,用pyinstaller打包的时候发现报错

/usr/local/lib/python3.10/dis.py
argval = const_list[const_index], 
IndexError: tuple index out of range

解决方案

vim 进入报错的文件,/usr/local/lib/python3.10/dis.py
找到def _unpack_opargs(code)函数,在else语句中添加extended_arg=0,如下:

【解决】Pyinstaller打包报错IndexError: tuple index out of range_第1张图片
退出文件,保存即可

你可能感兴趣的:(python,flask)