PyInstaller 和多处理

问题描述 投票:0回答:2

我想使用模块多处理从 GUI (wxPython) 启动一个简单的 HTTP 服务器。

如果我直接用 Python 启动这段代码,它工作正常。但是在构建版本(使用 PyInstaller 2 或 3)中,如果我启动 multiprogress -> 不是运行函数中的代码,而是整个应用程序,GUI 会再次启动。 有人知道为什么吗?

#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import wx, sys, time, thread, datetime, os, platform, multiprocessing, socket
import favicon
from genLicense import load as loadLicense
from licenseDetailDialog import Dialog as licenseDetailDialog

class mp(multiprocessing.Process):
    def __init__(self, queue, func, *args):
        multiprocessing.Process.__init__(self)
        self.queue = queue
        self.func = func
        self.args = args
    def run(self):
        time.sleep(0.1)
        try:
            self.func(*self.args)
        except Exception as e:
            self.queue.put(e)
            print(e)

class MainFrame(wx.Frame):
    def __init__(self, *args, **kwds):
        kwds["style"] = wx.DEFAULT_FRAME_STYLE | wx.RESIZE_BORDER
        wx.Frame.__init__(self, *args, **kwds)

        # [...]

        self.button_startstop = wx.Button(self, wx.ID_ANY, _("Server &starten"))

        # [...]

    def startstop(self, event):
        if self.running:
            self._stop()
        else:
            self._start()

    def _start(self):
        print("Starting...")

        try:
            port = 123
            queue = multiprocessing.Queue()

            self.server_process = mp(queue, ACC_main.START, port)
            self.server_process.start()
            print("\tPID: {}\n\n{}".format(self.server_process.pid, "="*50))

            # [...]

            self.running = True

        except:
            # [...]


    def _stop(self):
        print("\n{}\nStopping...".format("="*50))

        if self.running:
            print("\tPID: {}\n".format(self.server_process.pid))
            self.server_process.terminate()
        self.running = False
python wxpython pyinstaller
2个回答
11
投票

在创建窗口之前将

multiprocessing.freeze_support()
行添加到您的代码中。它被记录在here


0
投票

因为我无法评论添加这篇文章: 在 Ubuntu 平台上添加以下行不能解决问题。使用以下提到的版本进行测试。

multiprocessing.freeze_support()

参考以下链接中报告的类似问题,但有人未经验证就关闭了这个问题。

在 Ubuntu 上使用 auto-py-to-exe 构建 python exe 时无法创建嵌套子进程

Ubuntu v20.04.4 LTS
Python v3.8.10
auto-py-to-exe v2.33.0
© www.soinside.com 2019 - 2024. All rights reserved.