cx_Freeze可执行文件在使用多处理和Freeze_support时运行多个任务



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

下面是我的示例GUItest_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,
)

如果我构建可执行文件并运行它;细节";两个任务命名为CCD_ 3。这是正常行为吗?如何避免可执行文件创建多个任务?

根据这个出色的答案,multiprocessing.freeze_support()调用的原因是

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

,从而避免在您的前提中所述的任务管理器中运行可执行文件的多个任务。

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

相关内容

  • 没有找到相关文章