I was working in my project related to pyqt5 GUI. I used multiprocessing to make it faster. When I run my program in editor, it works fine. But when I converted my program into executable using pyinstaller, then while running the program through this executable, it's not working. GUI opens, but close once it comes to the multiprocessing portion of the code (I get to know this by putting some print statement)
I have also tried mutiprocessing.freeze_support(), still it's not worked.
if I remove the multiprocessing, program through executable works fine, But I need to use multiprocessing to make it faster.
Any suggestion?