错误提示如下:
This probably means that you are not using fork to start your
child processes and you have forgotten to use the proper idiom
in the main module:
if __name__ == '__main__':
freeze_support()
...
The "freeze_support()" line can be omitted if the program
is not going to be frozen to produce an executable.
解决办法:
将调用主代码放在main中或者在linux下使用:
if __name__ == '__main__:
You may use if __name__ == '__main__:'
to solve this problem in Windows (reference) or run this code in Linux.
解决办法来源链接: