5 ms·
OP: I'm close to getting this to run but I get this error: Traceback (most recent call last): File "./deletefb.py", line 3, in <module> from seleniumrequ
by corbett3000 7y ago
OP: I'm close to getting this to run but I get this error:
Traceback (most recent call last):
File "./deletefb.py", line 3, in <module>
from seleniumrequests import Chrome
ImportError: No module named seleniumrequests
Any idea what's to be done?
- deleted 7y ago[deleted]
- anaphor 7y agoSounds like you're trying to run it from source? If so the steps would be: 1) virtualenv -p $(which python3) ./venv 2) source ./venv/bin/activate 3) pip install -r requirements.txt Then you should be able to run it, assuming you have google chrome and the chromedriver installed. It's called "chromium-chromedriver" on Ubuntu