gpt4 book ai didi

python - 已编译的 py2exe 应用程序 Selenium 中缺少文件

转载 作者:行者123 更新时间:2023-11-28 22:47:57 24 4
gpt4 key购买 nike

我正在尝试让我的 Selenium 应用程序正常工作。它会编译所有内容,但是当我打开应用程序时,它会给我这个:

C:\Python34\dist>browse.exe
Traceback (most recent call last):
File "browse.py", line 9, in <module>
File "C:\Python34\lib\site-packages\selenium\webdriver\firefox\webdriver.py",
line 43, in __init__
self.profile = FirefoxProfile()
File "C:\Python34\lib\site-packages\selenium\webdriver\firefox\firefox_profile
.py", line 64, in __init__
WEBDRIVER_PREFERENCES)) as default_prefs:
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Python34\\dist\\lib
rary.zip\\selenium\\webdriver\\firefox\\webdriver_prefs.json'

我使用 py2exe 进行捆绑,并将 Firefox 作为我的浏览器驱动程序。

设置.py:

from distutils.core import setup
import py2exe

setup(
console=['browse.py'],
options={
"py2exe":{
"skip_archive": True,
"unbuffered": True,
"optimize": 2
}
}
)

最佳答案

查看原答案: Python - Trouble in building executable

您必须手动将 webdriver.xpi 和 webdriver_prefs.json 从 C:\Python27\Lib\site-packages\selenium\webdriver\firefox 复制到 dist\selenium\webdriver\firefox

关于python - 已编译的 py2exe 应用程序 Selenium 中缺少文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25653870/

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