“Instale o Chromedriver no Linux” Respostas de código

Instale a linha de comando do Chromedriver Linux

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

Instale o Chromedriver Ubuntu Python

sudo apt-get install unzip

wget -N http://chromedriver.storage.googleapis.com/2.26/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
chmod +x chromedriver

sudo mv -f chromedriver /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
Outstanding Oystercatcher

Instale a linha de comando do Chromedriver Linux

npm install chromedriver
Armandres

Instale o 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?'
slgotting

Instale o Chromedriver no Linux

Install via npm :

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

Respostas semelhantes a “Instale o Chromedriver no Linux”

Perguntas semelhantes a “Instale o Chromedriver no Linux”

Mais respostas relacionadas para “Instale o Chromedriver no Linux” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código