cx_Freeze 可执行文件在使用 multiprocessing 和 freeze_support 时运行多个任务

Posted

技术标签:

【中文标题】cx_Freeze 可执行文件在使用 multiprocessing 和 freeze_support 时运行多个任务【英文标题】:cx_Freeze executable runs multiple tasks when using multiprocessing and freeze_support 【发布时间】:2021-06-27 14:33:33 【问题描述】:

我使用 cx_Freeze 构建了一个可执行文件。我总是读到我需要包含multiprocessing.freeze_support 以避免在任务管理器中运行的可执行文件的多个任务。但是如果我使用 multiprocessing 和 freeze_support 我仍然会在任务管理器中运行两个任务。

这是我的示例 GUI,名为 test_wibu.py

import multiprocessing
from multiprocessing import freeze_support
import threading
import queue
import tkinter as tk
import psutil

import time
from tkinter.filedialog import *
sys._enablelegacywindowsfsencoding()

def worker(pqueue):
    while True:
        obj = pqueue.get()
        obj.execute()
        del obj


if __name__ == '__main__':
    freeze_support()

    q = queue.Queue(maxsize=0)

    root = Tk()


    print('Doing something to build the software interface')
    time.sleep(3)

    label = Label(root, text='Software', anchor=CENTER)
    label.grid(column=0, row=0, sticky='nwse', padx=0, pady=0)

    pqueue = multiprocessing.Queue()

    pool = multiprocessing.Pool(1, worker, (pqueue,))

    parent = psutil.Process()

    q.put('stop')

    root.mainloop()

还有我的 setup_wibu.py:

import os.path
from cx_Freeze import *


PYTHON_INSTALL_DIR = os.path.join(os.getenv('LOCALAPPDATA'), 'Programs', 'Python', 'Python36')
os.environ['TCL_LIBRARY'] = os.path.join(PYTHON_INSTALL_DIR, 'tcl', 'tcl8.6')
os.environ['TK_LIBRARY'] = os.path.join(PYTHON_INSTALL_DIR, 'tcl', 'tk8.6')


executables = [
    Executable('test_wibu.py',
               base='Win32GUI',
               targetName='test.exe',
               )
]

options = 
    'build_exe': 
        'excludes': ['gtk', 'PyQt4', 'PyQt5', 'scipy.spatial.cKDTree', 'sqlite3', 'IPython'],
        'packages': [],
        'includes':['pkg_resources'],
        'include_files': [os.path.join(PYTHON_INSTALL_DIR, 'DLLs', 'tk86t.dll'),
                          os.path.join(PYTHON_INSTALL_DIR, 'DLLs', 'tcl86t.dll')]

    ,


setup(
    name='Pest_wibu',
    version='1.0',
    executables=executables,
    options=options,

)

如果我构建可执行文件并运行它,我会在“详细信息”中进入任务管理器中的两个名为 test.exe 的任务。 这是正常行为吗?如何避免可执行文件创建多个任务?

【问题讨论】:

【参考方案1】:

根据this excellent answer,multiprocessing.freeze_support()调用的原因是

Windows 上缺少fork()(这并不完全正确)。正因为如此,在 Windows 上,fork 是通过创建一个新进程来模拟的,在这个新进程中,在 Linux 上正在子进程中运行的代码正在运行。

因此不要避免在您的前提下在任务管理器中运行的可执行文件的多个任务。

因此,您在任务管理器中观察到的行为可能是正常的,无法避免。

【讨论】:

以上是关于cx_Freeze 可执行文件在使用 multiprocessing 和 freeze_support 时运行多个任务的主要内容,如果未能解决你的问题,请参考以下文章

使用 cx_Freeze 创建可执行文件后不断收到“filedialog”错误

cx_Freeze 可执行文件在使用 multiprocessing 和 freeze_support 时运行多个任务

cx_freeze 可执行文件无法与 Geckodriver 配合使用

使用 Python 3.2 和 cx_Freeze 创建 Windows 可执行文件

无法使用 virtualenv 和 cx_Freeze 将 pygame 转换为可执行文件

使用 cx_Freeze 冻结成可执行文件后如何知道当前文件路径?