You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from __future__ import print_function is required for python2 (in particular 2.7.16).
I used Firefox rather than Chrome and found https://askubuntu.com/questions/870530/how-to-install-geckodriver-in-ubuntu helpful. A couple of source code lines required Chrome to be replaced with Firefox and line 20 became driver = webdriver.Firefox(options=wd_options).
python3 (in particular 3.7.3) worked but the requirements could be changed from == to >= as I am using python-dateutil version 2.8.0.
The text was updated successfully, but these errors were encountered:
from __future__ import print_function
is required forpython2
(in particular 2.7.16).Firefox
rather thanChrome
and foundhttps://askubuntu.com/questions/870530/how-to-install-geckodriver-in-ubuntu
helpful. A couple of source code lines requiredChrome
to be replaced withFirefox
and line 20 becamedriver = webdriver.Firefox(options=wd_options)
.python3
(in particular 3.7.3) worked but the requirements could be changed from==
to>=
as I am usingpython-dateutil
version 2.8.0.The text was updated successfully, but these errors were encountered: