Dany Achmad Virgian
Dany Achmad Virgian

Reputation: 51

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).

Upvotes: 2

Views: 1520

Answers (1)

Dany Achmad Virgian
Dany Achmad Virgian

Reputation: 51

Solved after manual installation. I'm using Linux.

  1. Firstly I downloaded chromedriver from the chromedriver official download website.

  2. After that I moved my chromedriver from ~/Downloads to /usr/local/bin using this line in the terminal:

    sudo mv ~/Downloads/chromedriver /usr/local/bin
    
  3. Finally I made the file executable:

    sudo chmod +x /usr/local/bin/chromedriver
    

Upvotes: 1

Related Questions