博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
路径不对 导致FileNotFoundError: [WinError 2] 系统找不到指定的文件, 问题解决办法...
阅读量:6256 次
发布时间:2019-06-22

本文共 1654 字,大约阅读时间需要 5 分钟。

执行python + selenium 代码

from selenium import webdriverdriver = webdriver.Chrome("D:\AutoConf\bin\chromedriver.exe")driver.get("http://www.baidu.com")

报错:FileNotFoundError: [WinError 2] 系统找不到指定的文件。

D:\pycode\test\venv\Scripts\python.exe D:/pycode/test/Testa/test01.py

Traceback (most recent call last):
File "D:\pycode\test\venv\lib\site-packages\selenium\webdriver\common\service.py", line 74, in start
stdout=self.log_file, stderr=self.log_file)
File "C:\Python36-32\Lib\subprocess.py", line 709, in __init__
restore_signals, start_new_session)
File "C:\Python36-32\Lib\subprocess.py", line 997, in _execute_child
startupinfo)
FileNotFoundError: [WinError 2] 系统找不到指定的文件。

During handling of the above exception, another exception occurred:

Traceback (most recent call last):

File "D:/pycode/test/Testa/test01.py", line 3, in <module>
driver = webdriver.Chrome("D:\AutoConf\bin\chromedriver.exe")
File "D:\pycode\test\venv\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 68, in __init__
self.service.start()
File "D:\pycode\test\venv\lib\site-packages\selenium\webdriver\common\service.py", line 81, in start
os.path.basename(self.path), self.start_error_message)
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

 

原因是指定chromedriver路径错误中用了 window路径正斜杠,正确的是用反斜杠

正确的代码

from selenium import webdriver#driver = webdriver.Chrome("D:\AutoConf\bin\chromedriver.exe")  #错误的路径 使用正斜杠driver = webdriver.Chrome("D:/AutoConf/bin/chromedriver.exe") #正确的路径 使用反斜杠driver.get("http://www.baidu.com")

 

转载地址:http://zdnsa.baihongyu.com/

你可能感兴趣的文章
TFS实现需求工作项自动级联保存
查看>>
crontab定时执行任务
查看>>
LDAP 设置指南(转)
查看>>
cobbler相关报错
查看>>
软件开发--开发中的辅助工具
查看>>
PowerDNS主从模式
查看>>
mysql查询今天、昨天、7天、近30天、本月、上一月 数据
查看>>
单臂路由
查看>>
26期20180627 更换国内源 yum下载rpm包 源码包安装
查看>>
使用阿里云的k8s部署访问环境
查看>>
大数据工程师微职位学习分享
查看>>
企业使用云服务器的优势
查看>>
dubbo Servlet Bridge Server时同时支持hessian和webservice
查看>>
lanmp一键安装包安装说明(包括lamp,lnmp,lnamp安装)
查看>>
Shell命令-文件及内容处理之head、tail
查看>>
aws上的vsftp服务的坎坷经历
查看>>
关于SVN 目录结构(2)
查看>>
Android碎碎念 -- 视频播放器
查看>>
关于51单片机“外部中断触发方式”的经验总结
查看>>
2.文件管理
查看>>