I've executed sudo apt-get install chromium-chromedriver
for selenium, but which chromedriver
does not return anything.
Asked
Active
Viewed 6.2k times
23

Stephen
- 881
1 Answers
37
The answer (from package search) is /usr/lib/chromium-browser/chromedriver
To put the chromedriver
binary in the path, you would write export PATH=$PATH:/usr/lib/chromium-browser/
.

Quentin Pradet
- 105

Stephen
- 881
dpkg -L chromium-chromedriver
shows you all files in that package as well. – I have no idea why the package is made that way, but I put a symlink from/usr/bin
to the binary to have it in my PATH. – Robert Siemer Mar 10 '15 at 11:03