本文所有教程及源码、软件仅为技术研究。不涉及计算机信息系统功能的删除、修改、增加、干扰,更不会影响计算机信息系统的正常运行。不得将代码用于非法用途,如侵立删! |
环境
- win10
- python3.9
- pyinstaller、multiprocessing
在windows上Pyinstaller打包多进程程序需要添加特殊指令。
这里是官方github给出的解释:
https://github.com/pyinstaller/pyinstaller/wiki/Recipe-Multiprocessing
修改方式比较简单,在if name=='main:'下添加一句multiprocessing.freeze_support()即可。
if __name__ == '__main__': # pyinstaller 打包含有多进程代码的程序问题,加入下面一行代码,解决 multiprocessing.freeze_support()