使用数据文件的Python模块在编译后无法正常工作

时间:2018-07-20 10:14:32

标签: python selenium python-import pyinstaller

我正在使用名为“ webbot”的库,该库在执行时使用chrome的驱动程序文件。

库中的代码是这样的:

driverpath =  os.path.join(os.path.split(__file__)[0] , 'drivers{0}{1}'.format(os.path.sep , "chrome_driver. 

self.driver = webdriver.Chrome(executable_path=driverpath)

Webbot库文件夹具有一个“驱动程序”文件夹,其中包含驱动程序可执行文件。

当我在我的python代码中导入“ webbot”并运行它时,它工作正常。但是当我编译并执行python程序时,它给了我“ chrome_exe”找不到错误,并且不在路径中。

该如何解决? 由于“ webbot”是正在导入的库,因此当我编译python代码时,它不应该将webbot文件夹内的所有文件包括在内吗?

0 个答案:

没有答案