Question

I'm trying to make executable file of my python program with py2exe. I was succeed to make hello_word.exe but when I want to make exe of my own program it said RuntimeError: maximum recursion depth exceeded After trying many times I recognized that it happens when I import sympy module. Should I change setup.py when I want to import a module?

Was it helpful?

Solution

use python 3 and import sys, see if that helps py2exe has a problem with sympy,there is and issue in github you can follow

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top