Skip to content
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

Connection error : make sure your internet connection is working #99

Open
hungngomobile opened this issue Oct 23, 2022 · 3 comments
Open
Labels
account needed Credentials are required to reproduce, Issue will be closed in 2 days if not responded question Further information is requested

Comments

@hungngomobile
Copy link

I had downloaded from the acloud guru with this tool and it was working well. Today, I has tried to download from the acloud guru again but I got the error: "Connection error : make sure your internet connection is working". My internet connection is working well. Please help to fix this issue.

@r0oth3x49 r0oth3x49 added question Further information is requested account needed Credentials are required to reproduce, Issue will be closed in 2 days if not responded labels Jul 3, 2023
@outtycast
Copy link

it's an ssl verify issue. not been able to resolve yet in windows 11.

i think probably url lib looking for certificate. might be easier to use a different library than to resolve it in the end.

can try this than reboot and run script again

pip install pyOpenSSL

@outtycast
Copy link

here's how i fixed it

step#1: run in cmd:

pip install certifi


step #2 edit this file in acloud folder _compat.py

at top add this import under import requests

import certifi

then scroll to the bottom and add in certifi,

save the file


step #3 edit this file in acloud folder _shared.py

at top add this import under requests,

certifi,


step #4 in same file _shared.py

add this below the imports

os.environ["REQUESTS_CA_BUNDLE"] = certifi.where()
os.environ["SSL_CERT_FILE"] = certifi.where()


then save and ssl issue will be gone. tested on windows only

@alex780505
Copy link

Tested on MacOS, worked fine !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
account needed Credentials are required to reproduce, Issue will be closed in 2 days if not responded question Further information is requested
Projects
None yet
Development

No branches or pull requests

4 participants