Python Forum

Full Version: undetected_chromedriver on Pi
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I have undetected_chromedriver running on windows, works great.
Would like to move my program to my Pi server.

Problem is that I cannot get undetected_chromedriver to work with chromium-browser.

My code:

import time
import undetected_chromedriver as uc


if __name__ == "__main__":

    # start driver
    options = uc.ChromeOptions()
    options.binary_location='/usr/bin/chromium-browser'

    driver = uc.Chrome(options=options)

    driver.get('https://www.news24.com/')

    time.sleep(10)

    driver.quit()
Its a sad world where I have to solve my own problems but here you go.

undetected_chromedriver is not ARM compatible.
There is a version here that is ARM compatible : https://github.com/ArevomEisvolk/undetec...romedriver

your welcome self.