Horje
how to install chromedriver on linux Code Example
install chromedriver linux command line
wget https://chromedriver.storage.googleapis.com/2.41/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
Source: tecadmin.net
how to install chromedriver on linux
To install chromedriver:
$ sudo apt-get install unzip
$ wget -N http://chromedriver.storage.googleapis.com/2.29/chromedriver_linux64.zip -P ~/Downloads
$ unzip ~/Downloads/chromedriver_linux64.zip -d ~/Downloads
$ sudo mv -f ~/Downloads/chromedriver /usr/local/share/
$ sudo chmod +x /usr/local/share/chromedriver
$ sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
$ sudo ln -s /usr/local/share/chromedriver /usr/bin/chromedriver

It will be succesfully installed
To find the path write:
$ whereis chromedriver 




Shell

Related
upgrading ionic 5 Code Example upgrading ionic 5 Code Example
yarn equivalent of npm ci Code Example yarn equivalent of npm ci Code Example
docker access denied Code Example docker access denied Code Example
kill port in kali linux Code Example kill port in kali linux Code Example
kill process linux using port Code Example kill process linux using port Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11