I want to use multiprocessing module to complete this.
multiprocessing
when I do this, like:
$ python my_process.py
I start a pare
Here's one way to achieve an independent child process that does not exit when __main__ exits. It uses the os._exit() tip mentioned above by @WKPlus.
__main__
os._exit()
Is there a way to detach matplotlib plots so that the computation can continue?