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 :: git submodule update 
Shell :: meteor installation 
Shell :: see installed packages pacman 
Shell :: ubuntu install without suggested packages 
Shell :: restart docker daemon windows 
Shell :: pm2 ressurect 
Shell :: compress video ffmpeg 
Shell :: installing vs code in ubuntu 
Shell :: borrar una rama git 
Shell :: shell: search a substring in another string 
Shell :: tail colorful 
Shell :: bash folder size 
Shell :: The following packages have unmet dependencies python3-pip 
Shell :: open cmd with size 
Shell :: brave disable gpu linux 
Shell :: open android studio project from terminal 
Shell :: show curr path cmd 
Shell :: show applications shortcut ubuntu move right 
Shell :: system program error detected ubuntu 
Shell :: how to check if postgres is installed 
Shell :: linux capitalize string using tr 
Shell :: xcode path mac 
Shell :: install opencl library 
Shell :: set kubernetes alias 
Shell :: uninstall anaconda ubuntu 
Shell :: upgrade to ubuntu 22.04 
Shell :: youtube-dl continue 
Shell :: The current branch zuqing_feature2 has no upstream branch. 
Shell :: ubuntu 20 install lib32ncurses5 
Shell :: add to path windows powershell 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =