Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install chromedriver linux command line

wget https://chromedriver.storage.googleapis.com/2.41/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
Comment

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 
Comment

install chromedriver linux

sudo apt-get install unzip &&
a=$(uname -m) &&
rm -r /tmp/chromedriver/
mkdir /tmp/chromedriver/ &&
wget -O /tmp/chromedriver/LATEST_RELEASE http://chromedriver.storage.googleapis.com/LATEST_RELEASE &&
if [ $a == i686 ]; then b=32; elif [ $a == x86_64 ]; then b=64; fi &&
latest=$(cat /tmp/chromedriver/LATEST_RELEASE) &&
wget -O /tmp/chromedriver/chromedriver.zip 'http://chromedriver.storage.googleapis.com/'$latest'/chromedriver_linux'$b'.zip' &&
sudo unzip /tmp/chromedriver/chromedriver.zip chromedriver -d /usr/local/bin/ &&
echo 'success?'
Comment

Install chromedriver on linux

Install via npm :

sudo npm -g install chromedriver
ln -sf /usr/lib/node_modules/chromedriver/lib/chromedriver/chromedriver ~/bin/chromedriver
Comment

PREVIOUS NEXT
Code Example
Shell :: install stacer ubuntu or linux 
Shell :: ssh-keygen 
Shell :: list cron jobs for all users 
Shell :: install vue js ubuntu 
Shell :: could not open file "postmaster.pid": No such file or directory 
Shell :: kill port in mac terminal 
Shell :: get saved wifi password windows 10 
Shell :: install bower npm 
Shell :: bash weather report 
Shell :: git commits by author 
Shell :: find current working directory bash 
Shell :: How to create a new repository on the command line. 
Shell :: install ganache cli 
Shell :: git ubuntu store credential 
Shell :: see if urdf is valid 
Shell :: git vimdiff 
Shell :: streamlink save to mp4 
Shell :: psycopg2 error pip install error 
Shell :: apt install postgres client 
Shell :: check jdk version 
Shell :: docker iniciar contenedor automáticamente 
Shell :: adonis version 
Shell :: ubuntu command history 
Shell :: instal .deb ubuntu 
Shell :: mui treasury styles install 
Shell :: command check macos version 
Shell :: adb tap screen 
Shell :: kill python processes 
Shell :: how to restart cron job 
Shell :: ubuntu Install a file integrity tool to monitor changes to critical and sensitive files 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =