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 :: comprimir carpeta linux comando 
Shell :: github untrack files 
Shell :: linux count files in subdirectories 
Shell :: .nvm bash 
Shell :: wget save file with different name 
Shell :: setup virtualenv python windows 
Shell :: How to find information about my RAM on linux 
Shell :: how to stop a port in macos 
Shell :: change local branch name 
Shell :: flush dns mac 
Shell :: ubuntu dns config 
Shell :: how to install bootstrap in angular 
Shell :: linux delete files older than specific date 
Shell :: enable virtualization mac pro 
Shell :: ubuntu packages 
Shell :: git merge vs git merge --no-ff 
Shell :: docker compose install ubuntu 
Shell :: git remove untracked files 
Shell :: install yarn 
Shell :: how to update forked repo in github 
Shell :: github remote permisiion denied on git push 
Shell :: export bigquery scheam 
Shell :: find string terminal 
Shell :: git checkout to remote branch 
Shell :: kubectl commands 
Shell :: Install Docker Engine on EC2 Instance 
Shell :: export docker container 
Shell :: debian bullseye install nvm 
Shell :: how to install mongodb server in ubuntu 
Shell :: pip 21.0.1 install windows 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =