繁体   English   中英

pyinstaller 一个文件 --no-console 不起作用“致命错误”

[英]pyinstaller one file --no-console does not work “Fatal Error”

我尝试使用 pyinstaller 的 2 个选项,一个带控制台,一个不带。

我使用的是 Windows 10、Python 3.5.4、Windows Chrome 驱动程序 2.33 和 Selnium 3.6.0 以及 Pyinstaller 3.3。

没有控制台的那个失败了:

这是Test.py的代码

#!python3
from selenium import webdriver

# Chrome Proxy options and disable the Yellow Bar about Chrome being controlled by Automated Software.
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument("--disable-infobars")
chrome_options.add_argument("--disable-logging")
chrome_options.add_argument("--disable-notifications")
chrome_options.add_argument("--disable-default-apps")
chrome_options.add_argument("--disable-extensions")


# load google.com with the proxy settings and a logging path to a file
driver = webdriver.Chrome(r"D:\Selenium\chromedriver_win32\chromedriver.exe", chrome_options=chrome_options)

# maximise window
driver.maximize_window()

driver.get("https://www.google.com/mail")

以下是具有完全相同代码的 pyinstaller 命令:

- 使用控制台窗口也可以工作:

pyinstaller -F -i favicon.ico Test.py

- 没有控制台窗口失败

pyinstaller -F --noconsole -i favicon.ico Test.py

我收到此错误:

*"Failed to execute script error"*

我不知道为什么。

谢谢


谢谢你的回复我看了:

C:\Users\testuser\AppData\Local\Programs\Python\Python35\Lib\site-packages\selenium\webdriver\chrome\service.py

这里没有子流程。

我还检查了:

C:\Users\testuer\AppData\Local\Programs\Python\Python35\Lib\site-packages\selenium\webdriver\common\service.py

在第 70 行,我添加了 stdin=self.log_file 的条目,因为它丢失了

 try:
            cmd = [self.path]
            cmd.extend(self.command_line_args())
            self.process = subprocess.Popen(cmd, env=self.env,
                                            close_fds=platform.system() != 'Windows',
                                            stdin=self.log_file, stdout=self.log_file, stderr=self.log_file)

使用 pyinstaller 重新创建:

pyinstaller -F --noconsole  -i favicon.ico Test.py

这创建了 exe 但是现在控制台窗口出现了....

带有 selenium 的 Python 程序(webdriver)不能作为单个和 noconsole exe 文件(pyinstaller)工作

经过一番搜索,我找到了完整的解决方案:首先转到-

C:\Python35\Lib\site-packages\selenium\webdriver\common\service.py

改变:

self.process = subprocess.Popen(cmd, env=self.env,
                                            close_fds=platform.system() != 'Windows',
                                            stdout=self.log_file, stderr=self.log_file)

至:

self.process = subprocess.Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=PIPE, shell=False, creationflags=0x08000000)

现在只需像这样构建你的 app.py:

pyinstaller --noconsole --onefile  --noupx   Yourfile.py

我希望这有助于某人:

C:\\Users\\%user_name%\\AppData\\Local\\Programs\\Python\\Python36-32\\Lib\\site-packages\\selenium\\webdriver\\common

在“def start”中添加导入和更改:

从 win32 进程导入 CREATE_NO_WINDOW

    try:
        cmd = [self.path]
        cmd.extend(self.command_line_args())
        self.process = subprocess.Popen(cmd, env=self.env,
                                        close_fds=platform.system() != 'Windows',
                                        stdin=self.log_file, stdout=self.log_file, stderr=self.log_file, creationflags=CREATE_NO_WINDOW)
    except TypeError:
        raise

如果错误,请检查 pywin32:pip install pywin32

首先转到- C:\\Python35\\Lib\\site-packages\\selenium\\webdriver\\common\\service.py

然后在def start(self):

def start(self): """ Starts the Service.

    :Exceptions:
     - WebDriverException : Raised either when it can't start the service
       or when it can't connect to the service
    """
    try:
        cmd = [self.path]
        cmd.extend(self.command_line_args())
        self.process = subprocess.Popen(cmd, env=self.env,
                                        close_fds=platform.system() != 'Windows',
                                        stdout=self.log_file,
                                        stderr=self.log_file,
                                        stdin=PIPE,
                                        creationflags=0x08000000)``

只需添加creationflags=0x08000000 ,我已经在代码中添加了。 creationflags 是一个常数。 它会正常工作。

或者,您也可以将它替换为creationflags=CREATE_NO_WINDOWfrom win32process import CREATE_NO_WINDOW添加此行代码。

就我而言,第一种方法有效。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM