为什么我的exe在pyInstaller之后最小化后就消失了

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

在控制台中测试代码时,它运行正常,所有功能都正常工作,但在 pyInstaller 之后问题出现了。当我按下最小化按钮时,图标不会出现在系统托盘中,而是消失,并且通常该程序不在窗口中,但它在后台运行?如果有人可以帮忙:) 我只尝试更新 pyInstaller 和 pystray,不知道该怎么做..

# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
    ['web_search.py'],
    pathex=[],
    binaries=[],
    datas=[('ImotSearch_MIcon.png', '.'), ('sent_ads.json', 'web')],
    hiddenimports=['requests', 'pystray'],
    hookspath=[],
    hooksconfig={},
    runtime_hooks=[],
    excludes=[],
    noarchive=True,
    optimize=0,
)
pyz = PYZ(a.pure)

exe = EXE(
    pyz,
    a.scripts,
    a.binaries,
    a.datas,
    [('v', None, 'OPTION')],
    name='web_search',
    debug=True,
    bootloader_ignore_signals=False,
    strip=False,
    upx=True,
    upx_exclude=[],
    runtime_tmpdir=None,
    console=False,
    disable_windowed_traceback=False,
    argv_emulation=False,
    target_arch=None,
    codesign_identity=None,
    entitlements_file=None,
    icon=['ImotSearch_MIcon.png'],
)`

button:
def quit_window(icon, item):
    icon.stop()
    root.destroy()

def show_window(icon, item):
    icon.stop()
    root.after(0, root.deiconify)

def hide_window():
    root.withdraw()
    image = Image.open(r"ImotSearch_MIcon.png")
    menu = (item('Exit', quit_window), item('Open', show_window))
    icon = pystray.Icon("name", image, "web search", menu)
    icon.run()

minimize_button = tk.Button(root, text="Minimize", command=hide_window)
minimize_button.pack(pady=5)````
python windows pycharm system-tray
1个回答
0
投票

最有可能的防病毒软件正在删除可执行文件。如果是这种情况,那么您也许可以恢复 AV 的隔离列表。

© www.soinside.com 2019 - 2024. All rights reserved.