Trouble Setting Up Selenium With Python3(linux)
Im somewhat a beginner with Python and recently stumbled across the Selenium module, would appreciate it if someone could help me? I cant seem to get the selenium module working a
Solution 1:
OSError: [Errno 8] Exec format error
this looks like it is failing to start geckodriver because you are using a binary that is compiled for the wrong architecture. Make sure you download the correct version for your architecture from https://github.com/mozilla/geckodriver/releases
for example, if you are running 64-bit linux (amd64), you need to download the geckodriver tarball that ends with "linux64.tar.gz".
Post a Comment for "Trouble Setting Up Selenium With Python3(linux)"