Hi everyone, I'm trying to use Chromedriver (through Selenium, although this is not relevant for this particular case).
When I run chromedriver on my normal Ubuntu 20.04 shell:
- /root/.wdm/drivers/chromedriver/linux64/103.0.5060.53/chromedriver
It works perfectly (I have already made sure to do chmod 777 to exclude permission issues).
However, when I try to run the exact same command from within my Python server's code, I get the error:
-
subprocess.CalledProcessError: Command '['/root/.wdm/drivers/chromedriver/linux64/103.0.5060.53/chromedriver']' died with <Signals.SIGTRAP: 5>.
If anyone could help me understand what this SIGTRAP is, and why exactly I can't initiate chromedriver from my Python process, I would be greatly thankful!