Certbot exiting with error: ConnectionError: ('Connection aborted.', error("(60, 'ETIMEDOUT')",))

hi @tcv

Looks like it could be a python issue

run> pip freeze and you should get a list of packages

can you also try this snippet of code and let me know what you get

python
import requests
r = requests.get('https://acme-v01.api.letsencrypt.org/directory')
r.status_code
r.text

Should be something like the below

Andrei