<legend id='oIjLV'><style id='oIjLV'><dir id='oIjLV'><q id='oIjLV'></q></dir></style></legend>
  • <i id='oIjLV'><tr id='oIjLV'><dt id='oIjLV'><q id='oIjLV'><span id='oIjLV'><b id='oIjLV'><form id='oIjLV'><ins id='oIjLV'></ins><ul id='oIjLV'></ul><sub id='oIjLV'></sub></form><legend id='oIjLV'></legend><bdo id='oIjLV'><pre id='oIjLV'><center id='oIjLV'></center></pre></bdo></b><th id='oIjLV'></th></span></q></dt></tr></i><div id='oIjLV'><tfoot id='oIjLV'></tfoot><dl id='oIjLV'><fieldset id='oIjLV'></fieldset></dl></div>

        • <bdo id='oIjLV'></bdo><ul id='oIjLV'></ul>
        <tfoot id='oIjLV'></tfoot>

        <small id='oIjLV'></small><noframes id='oIjLV'>

      1. 如何在 pyinstaller 中包含 chromedriver?

        时间:2023-10-08

      2. <legend id='hBddd'><style id='hBddd'><dir id='hBddd'><q id='hBddd'></q></dir></style></legend>
          • <bdo id='hBddd'></bdo><ul id='hBddd'></ul>

            <small id='hBddd'></small><noframes id='hBddd'>

          • <tfoot id='hBddd'></tfoot>
          • <i id='hBddd'><tr id='hBddd'><dt id='hBddd'><q id='hBddd'><span id='hBddd'><b id='hBddd'><form id='hBddd'><ins id='hBddd'></ins><ul id='hBddd'></ul><sub id='hBddd'></sub></form><legend id='hBddd'></legend><bdo id='hBddd'><pre id='hBddd'><center id='hBddd'></center></pre></bdo></b><th id='hBddd'></th></span></q></dt></tr></i><div id='hBddd'><tfoot id='hBddd'></tfoot><dl id='hBddd'><fieldset id='hBddd'></fieldset></dl></div>
                <tbody id='hBddd'></tbody>

                  本文介绍了如何在 pyinstaller 中包含 chromedriver?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在使用 pyinstaller 创建我的 python 脚本的可执行文件.
                  在脚本中我使用了这些导入:

                  I am using pyinstaller to create an executable of my python script.
                  In the script I'm using these imports:

                  from selenium import webdriver
                  from selenium.webdriver.chrome.options import Options
                  etc...
                  

                  问题是,当运行 pyinstaller myscript.py 时,会导致包含 Firefox,而不是 Chrome.结果文件夹 c:...distmyscriptseleniumwebdriver 有一个 firefox 文件夹,所以它只是跳过了 chromedriver,这对我来说是一个严重的问题,因为脚本需要与 Chrome 一起运行.
                  围绕这个主题只有几个问题,但没有解决问题的答案.
                  我正在考虑将 --hidden-import MODULENAME 标签添加到命令中,但 chromedriver.exe 不是模块...谢谢

                  The problem is, when running pyinstaller myscript.py , it will result in including Firefox, instead of Chrome. In the result folder c:...distmyscriptseleniumwebdriver there is a firefox folder, so it is simply skipping chromedriver, and it is a serious problem for me, because the script needs to run with Chrome.
                  There is only a few questions around this topic, but there is no answer to solve the issue.
                  I was thinking on adding the --hidden-import MODULENAME tag to the command, but chromedriver.exe is not a module... Thanks

                  推荐答案

                  应该添加为二进制文件,因为是二进制文件...
                  因此,需要一个自定义规范文件,其中应该定义本地系统上 chromedriver 的路径以及相对于 distmyscript 的所需位置,因此它看起来像这样:

                  It should be added as a binary file, since it is a binary file...
                  So a custom spec file needed where the chromedriver's path on the local system and the desired location relative to the distmyscript should be defined, so it looks something like this:

                  .....
                  a = Analysis(['myscript.py'],
                               pathex=['path\to\my\script'],
                               binaries=[ ('path\to\my\chromedriver.exe', '.\selenium\webdriver') ],
                               datas=None,
                  ....
                  

                  然后使用这个规范文件运行 pyinstaller:pyinstaller myscript.spec myscript.py

                  And then run the pyinstaller with this spec file: pyinstaller myscript.spec myscript.py

                  这篇关于如何在 pyinstaller 中包含 chromedriver?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何在 Windows 10 上安装 ChromeDriver 并使用 Chrome 运 下一篇:如何修复“无效的参数:无效的‘到期’"在向

                  相关文章

                  最新文章

                • <small id='VGXF2'></small><noframes id='VGXF2'>

                        <bdo id='VGXF2'></bdo><ul id='VGXF2'></ul>
                    1. <legend id='VGXF2'><style id='VGXF2'><dir id='VGXF2'><q id='VGXF2'></q></dir></style></legend>
                      <i id='VGXF2'><tr id='VGXF2'><dt id='VGXF2'><q id='VGXF2'><span id='VGXF2'><b id='VGXF2'><form id='VGXF2'><ins id='VGXF2'></ins><ul id='VGXF2'></ul><sub id='VGXF2'></sub></form><legend id='VGXF2'></legend><bdo id='VGXF2'><pre id='VGXF2'><center id='VGXF2'></center></pre></bdo></b><th id='VGXF2'></th></span></q></dt></tr></i><div id='VGXF2'><tfoot id='VGXF2'></tfoot><dl id='VGXF2'><fieldset id='VGXF2'></fieldset></dl></div>

                      <tfoot id='VGXF2'></tfoot>