Created
September 9, 2023 20:09
-
-
Save jazlopez/7eb23bcc7cb1532becb9b74bc81b233d to your computer and use it in GitHub Desktop.
Fix cerbot utility script to renew certificates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# certbot utility stopped working failing with this error | |
# No module named '_cffi_backend' | |
# resolution | |
sudo apt install python3-dev build-essential libssl-dev libffi-dev python3-setuptools | |
python3 -m pip install cffi | |
# retry it should work | |
certbot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment