如何解决multiprocessing导入时无限开启进程?
zty1122zty opened this issue · 3 comments
zty1122zty commented
在pyinstaller打包pyqt程序为exe时,需要用multiprocessing.freeze_support()来防止无限开启进程。实际测试是可行的。
但当使用pystand打包时,在.int文件中调用主函数前使用freeze_support()。测试后无效果,即仍无限开启进程。
import main
from multiprocessing import freeze_support
freeze_support()
main.startwin()
请问有无解决方案?谢谢
zty1122zty commented
zty1122zty commented
非常感谢。方法可行,问题已解决。