Skip to content

Instantly share code, notes, and snippets.

@thotmx
Created March 21, 2015 06:12
Show Gist options
  • Star 26 You must be signed in to star a gist
  • Fork 15 You must be signed in to fork a gist
  • Save thotmx/046b6fa582f0725dc783 to your computer and use it in GitHub Desktop.
Save thotmx/046b6fa582f0725dc783 to your computer and use it in GitHub Desktop.
Install chromedriver in Ubuntu (14.04)
$ sudo apt-get install chromium-chromedriver
$ sudo ln -s /usr/lib/chromium-browser/chromedriver /usr/bin/chromedriver
@nikolalsvk
Copy link

Had to also do sudo apt-get install libxi6 libgconf-2-4

@patrickdavey
Copy link

I did not have to install libxi6 nor libgconf-2-4 (though maybe they were installed already).

Also, if you happen to be doing this with rails, I was able to configure Selenium::WebDriver::Chrome.driver_path = "/usr/lib/chromium-browser/chromedriver" rather than do the symlinking.

@douglasmartins7
Copy link

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment