How to install ChromeDriver in Python?

How to install ChromeDriver in terminal?

I was trying to install ChromeDriver in my system.

When I type the command in terminal: sudo npm install -g chromedriver. It is throwing me error as follows: npm ERR! registry hmmm@1.0.1 No repository found for chromedriver
I have tried many other commands as well, but they all throwing me same error. My environment details are as follows: Python version: 2.7.10
NPM version: 1.4.28
OS: ubuntu 14.04 LTS Please help me to resolve this issue. Npm ERR!1 No repository found for chromedriver. As the error message states, you are missing a repo where the chromedriver is available for installation. The easiest way is to add a new repo with the latest version of chromedriver and update npm accordingly. For example: curl -sL

Related Answers

How to run Selenium Python in Chrome?

As the title said, I would like to know how to import Chrome...

How to setup selenium in Python?

Recently I came across this tutorial of Web Scraping with pyth...