我有一个用python编写的硒脚本。我的脚本需要导入诸如OpenPyxl,slate3K,pyautogui等库。我正在使用pyinstaller,它成功捆绑了文件,但是当我打开exe文件时,它会立即关闭。
我以前使用pyinstaller制作了可执行文件,但是由于最近的更新,我无法将python文件与openpyxl导入捆绑在一起。我已经尝试过使用相同的 以前版本的pyinstaller,但都是徒劳的。
import openpyxl
import sys
import time
import pyautogui
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.webdriver import ActionChains
from selenium.webdriver.chrome.options import Options
我只需要一种将它们捆绑在独立可执行文件中的方法。