I have a program written in python using multiple large modules such as Tensorflow, tesseract, cv2, and others. I need to compile the program fairly often, so the problem is, that all those large modules are compiled again and again, taking lot of time and resources.
Is there a way to compile my code only?
So that I could just replace the old my_program.exe with the new my_program.exe, because those modules stay the same. It's waist of time.