pyinstaller执行后出现maximum recursion depth exceeded while calling a Python object
Posted 那好好
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pyinstaller执行后出现maximum recursion depth exceeded while calling a Python object相关的知识,希望对你有一定的参考价值。
通过查阅,得知如下:
1.递归深度不够,我设置一下递归深度
# 在首文件头部
import sys sys.setrecursionlimit(5000)
2.openpyxl的问题
# openpyxl版本问题,在2.3.5可以正常打包 pip uninstall openpyxl pip install openpyxl==2.3.5
以上是关于pyinstaller执行后出现maximum recursion depth exceeded while calling a Python object的主要内容,如果未能解决你的问题,请参考以下文章
用 pyinstaller 打包生成 exe 后,执行时出现 Failed to execute script 错误
用 pyinstaller、-F -w等打包方式生成 exe 后,都出现错误,是怎么回事?
Pyinstaller打包配置UPX缩小程序包大小,打包时出现UPX is not available处理方法