How to add Chromedriver to PATH in linux?

前端 未结 3 1981
遇见更好的自我
遇见更好的自我 2020-12-10 12:00

Trying to use Selenium with Chrome in a python script.

I get the following error:

WebDriverException: Message: \'chromedriver\' executable needs to b         


        
相关标签:
3条回答
  • 2020-12-10 12:48

    You can specify the absolute path to your chrome driver in your script as such:

    from selenium import webdriver
    driver = webdriver.Chrome(executable_path='/path/to/driver/chromedriver')
    

    Or you can add the path to your webdriver in the PATH system variable as so:

    export PATH=$PATH:/path/to/driver/chrome-driver
    

    You may add the above line to your /home/<user>/.profile file to make it permanent.

    Tested on Ubuntu 17.10 running Python 2.7.14

    Hope this helps!

    0 讨论(0)
  • 2020-12-10 12:55

    Move Chromedriver to path with:

    sudo mv -f ~/chromedriver /usr/local/bin/chromedriver
    

    /usr/local/bin/chromedriver is path.

    0 讨论(0)
  • 2020-12-10 13:03

    The solution posted by @AnythingIsFine is indeed correct.

    However in my case my pytest was still unable to find the chromedriver (despite it was correctly added to the PATH and from the terminal I could execute it).

    So I've solved by adding an alias of the chromedriver in the /usr/bin directory:

    sudo ln -s /path/to/chromedriver /usr/bin
    
    0 讨论(0)
提交回复
热议问题