1

我在网站自动化程序上工作了 1 个月,一切顺利并且工作得非常好,直到我不得不将我的笔记本电脑重置为出厂设置,因为打开笔记本电脑后黑屏一直在运行。

我正在运行一台装有 Windows 10 的笔记本电脑,Pycharm 是 IDE,我使用 Python(64 位版本)进行编码。我使用 chromedrivers,遗憾的是没有 64 位版本,但没有任何问题。

现在,当我尝试启动从已完成项目中保存的代码时,它一直在说

“'chromedriver.exe' 可执行文件需要在 PATH 中。”

我尽我所能,将 chromedriver 复制到 PyCharm 文件夹中,在我的桌面上解压缩,我使用了 executable_path=r'...' 选项,我尝试安装 webdriver manager...没有任何帮助,并且webdriver manager 甚至无法下载。

我认为重要的是要说我有 2 个大容量存储,一个名为“Windows (C:)”,另一个名为“Data (D:)”,有 380 GB 的空间,所以我将 Pycharm 和 Python 安装到 Data(D :)。

如果有人能帮助我解决这个问题,我将非常感激,这让我发疯了我如何尝试解决这个问题.. 似乎没有人遇到过如此愚蠢的问题。

无论如何,亲爱的 StackOverflow 社区,祝你有美好的一天!

这是错误代码:

C:\Users\User\PycharmProjects\Ersters\venv\Scripts\python.exe C:/Users/User/PycharmProjects/Ersters/Ersters.py
Automatic generator started, please wait.
Traceback (most recent call last):
  File "C:\Users\User\PycharmProjects\Ersters\venv\lib\site-packages\selenium\webdriver\common\service.py", line 72, in start
    self.process = subprocess.Popen(cmd, env=self.env,
  File "C:\Users\User\AppData\Local\Programs\Python\Python38\lib\subprocess.py", line 854, in __init__
    self._execute_child(args, executable, preexec_fn, close_fds,
  File "C:\Users\User\AppData\Local\Programs\Python\Python38\lib\subprocess.py", line 1307, in _execute_child
    hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
FileNotFoundError: [WinError 2] The system cannot find the management file

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:/Users/User/PycharmProjects/Ersters/Ersters.py", line 15, in <module>
    driver = webdriver.Chrome(options=options, executable_path=r'C:\Users\User\Desktop\Python\chromedriver.exe')
  File "C:\Users\User\PycharmProjects\Ersters\venv\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 73, in __init__
    self.service.start()
  File "C:\Users\User\PycharmProjects\Ersters\venv\lib\site-packages\selenium\webdriver\common\service.py", line 81, in start
    raise WebDriverException(
selenium.common.exceptions.WebDriverException: Message: 'chromedriver.exe' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home


Process finished with exit code 1
4

0 回答 0