通过查阅,得知如下:

1.递归深度不够,我设置一下递归深度

# 在首文件头部
import
sys sys.setrecursionlimit(5000)

 

2.openpyxl的问题

# openpyxl版本问题,在2.3.5可以正常打包
pip uninstall openpyxl
pip install openpyxl==2.3.5

 

 

原文链接:https://stackoverflow.com/questions/38977929/pyinstaller-creating-exe-runtimeerror-maximum-recursion-depth-exceeded-while-ca

相关文章:

  • 2021-12-20
  • 2022-12-23
  • 2022-12-23
  • 2022-02-25
  • 2022-12-23
  • 2021-11-02
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-21
  • 2021-07-02
  • 2021-08-30
  • 2021-11-27
  • 2022-03-06
  • 2022-12-23
相关资源
相似解决方案