Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
undetected_chromedriver on Pi
#1
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()
Reply
#2
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.
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020