pyinstaller打包报错: RecursionError: maximum recursion depth exceeded,UnicodeDecodeError 解决办法
Posted patrickstar2019
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pyinstaller打包报错: RecursionError: maximum recursion depth exceeded,UnicodeDecodeError 解决办法相关的知识,希望对你有一定的参考价值。
出现原因:
这个错误意思是超过最大递归深度,python默认的递归深度默认是1000),因此当递归深度超过就会引发这样的异常。
解决方法:
1.执行pyinstaller -F XXX.py 它会在你的目录文件生成XXX.spec文件,然后报错,出现该类异常。
2.打开XXX.spec文件,在开头添加上面两行代码。
import sys
sys.setrecursionlimit(1000000)
3.继续执行打包,但是还文件名:pyinstaller -F XXX.spec ,执行该文件。
以上是关于pyinstaller打包报错: RecursionError: maximum recursion depth exceeded,UnicodeDecodeError 解决办法的主要内容,如果未能解决你的问题,请参考以下文章
pyinstaller打包exe后运行报错:ModuleNotFoundError: No module named ‘xxx‘
pyinstaller打包exe后运行报错:ModuleNotFoundError: No module named ‘xxx‘