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 :: linux move all files to another folder 
Shell :: fish wsl 
Shell :: adb screenrecord 
Shell :: linux unrar multiple files 
Shell :: dash bootstrap import 
Shell :: git undo merge 
Shell :: OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) 
Shell :: git reset head to commit remote 
Shell :: run latex from command line 
Shell :: get filename from path powershell 
Shell :: command to create or change a password for a user 
Shell :: how to list brew packages installed 
Shell :: gcloud check region 
Shell :: arch linux charcode logo 
Shell :: docker redis 
Shell :: bash get last field in line 
Shell :: sudo apt-get install libboost-all-dev 
Shell :: powershell suppress error 
Shell :: localhost ssl 
Shell :: webpack uninstall npm 
Shell :: git exclude some files from git commit 
Shell :: @mui/material npm 
Shell :: heic open linux 
Shell :: restart ssl ubuntu 
Shell :: add laravel installer to path 
Shell :: Id field in Model Django 
Shell :: install maven dependencies 
Shell :: linux show all group members 
Shell :: delete git stash list 
Shell :: powershell select unique 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =