'error installing install chromedriver on linux
iam new using linux and i want to install chrome driver using terminal with wget but suddenly i have this error and cant find or open chrome driver. this is my error any solution here?
Resolving chromedriver.storage.googleapis.com (chromedriver.storage.googleapis.com)... 34.101.5.80, 2404:f340:4010:1803::2010
Connecting to chromedriver.storage.googleapis.com (chromedriver.storage.googleapis.com)|34.101.5.80|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 6206401 (5,9M) [application/zip] chromedriver_linux64.zip: No such file or directory
Cannot write to ‘chromedriver_linux64.zip’ (Success).
Solution 1:[1]
Solved after manual installation. I'm using Linux.
Firstly I downloaded chromedriver from the chromedriver official download website.
After that I moved my chromedriver from
~/Downloadsto/usr/local/binusing this line in the terminal:sudo mv ~/Downloads/chromedriver /usr/local/binFinally I made the file executable:
sudo chmod +x /usr/local/bin/chromedriver
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | RobC |
