Open dbokser opened 9 years ago
I have the same problem. Do you have a solution?
def main(argv):
# your code here
if __name__ == '__main__':
main(sys.argv)
solves the problem
@doczoidberg The above fix is not working for me . I am using it with tkinter and evertime i closes the windows it opens 5 more instance of it . https://stackoverflow.com/questions/48682310/python-pyinstaller-exe-opens-multiple-instance-of-tkinter-window-python-firebas
Here is the demo video https://vimeo.com/254817308
Hi, currently i'm experiencing the same problem with Python 2.7.14 and Windows 10. Apparently the problem is on the module load... i've tried to comment all lines and the behavior was the same 'till i comment the import line.
So, to test I`ve created a simple script that look likes this:
And when I run it, the symptom is:
Weirdly, If I try to run the same script on Linux I have no problem.
I'm running a simple script with just a firebase import and am running into an issue where it runs the code several times over multiple threads.
returns the following:
whereas
returns the correct:
I'm running python 2.7.10 on Windows 10 in the command line.