-
-
Notifications
You must be signed in to change notification settings - Fork 460
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
failed to install geckodriver #219
Comments
Hi @batu1579 ! |
hello @aleksandr-kotlyar ! Thanks for your help, but I still get the same error after setting the environment variable. I checked the information and found that it seems to be caused by SSL authentication failure. So I disable SSL authentication at the error point (line 93 in utils.py). From this: response = requests.get(url, stream=True) To this: response = requests.get(url, stream=True, verify=False) It looks like the problem has been resolved, but I still don't know why: I can open Github and manually download the file, but I can't get the file using request. I am very confused. :( |
Issue seems to be related to a proxy. Are you working behind a proxy intercepting https requests? An improvement to this great library would be adding some parameter to customize the requests session object. |
- to disable request ssl verification (feature to fix issues SergeyPirogov#219, SergeyPirogov#226)
Details: add WDM_SSL_VERIFY env property to disable requests ssl verification (feature to fix issues SergeyPirogov#219, SergeyPirogov#226)
hi there:
its a great package. it is very convenient for me to update the drivers. it works perfectly when downloading the Edge and Chrome drivers. but when i used this package to automatically download firefox drivers. unable to download and reported the following error:
here are my codes:
if don’t know if this is my problem, could you help me thank you !
The text was updated successfully, but these errors were encountered: