我是靠谱客的博主 现实水蜜桃,最近开发中收集的这篇文章主要介绍Ubuntu Python selenium包 Message: 'chromedriver' executable needs to be in PATH的解决办法。,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
安装
直接用pip install selenium
在调用chromedriver
的会出现
Message: ‘chromedriver’ executable needs to be in PATH
点击chromedriver下载相对自己Google Chrome
linux版本的,
然后解压。
得到一个
然后复制到sudo cp chromedriver /usr/bin/
给权限,不给会出错。
sudo chmod 777 chromedriver
这里/usr/bin
都是我安装chromedriver
和Python
的目录,根据自己的安装地方移动。如果Google Chrome
和Python
安装在不同的地方,那就要移动两次。
或者是直接引用目录路径
brower = webdriver.Firefox(executable_path=r'/usr/local/Cellar/geckodriver/0.21.0/bin/geckodriver')
brower = webdriver.Chrome(executable_path=r'/usr/local/Cellar/geckodriver/0.21.0/bin/geckodriver')
最后
以上就是现实水蜜桃为你收集整理的Ubuntu Python selenium包 Message: 'chromedriver' executable needs to be in PATH的解决办法。的全部内容,希望文章能够帮你解决Ubuntu Python selenium包 Message: 'chromedriver' executable needs to be in PATH的解决办法。所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复