我使用selenium(3.4.3)和python3.6与自动化程序的Chrome开发,我已经生成了一个二进制可执行程序。它可以在我的电脑上运行,但是如果我把程序放在非python环境中它不起作用,我会看到错误消息:WebDriver仍然使用我的pc路径,我想知道包之前的可执行程序需要设置webdriver吗?现在我使用cx_Freeze-5.0.1,setup.py配置:
1.575
3.15
3.15
3.15
1.575
3.15
3.15
3.15
1.575
3.15
3.15
3.15
错误消息文字:
import sys
from cx_Freeze import setup, Executable
build_exe_options = {"packages": ["os"], "excludes": ["tkinter"]}
base = None
if sys.platform == "win32":
base = "console"
setup( name = "Cortan",
version = "1.0",
description = "my Canto",
options = {"build_exe": build_exe_options},enter code here
executables = [Executable("Cortan.py`enter code here`", base = base)])