Horje
install chromedriver linux command line 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
install chromedriver linux command line
npm install chromedriver
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?'




Shell

Related
how to create a vm in anaconda Code Example how to create a vm in anaconda Code Example
remove apache ubuntu Code Example remove apache ubuntu Code Example
how to install xlswriter for pandas Code Example how to install xlswriter for pandas Code Example
install numpy Code Example install numpy Code Example
linux get all env variables Code Example linux get all env variables Code Example

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