问题:AttributeError: module 'lib' has no attribute 'OpenSSL_add_all_algorithms'
分析
在使用certbot时,报了这个错误,该问题是没有安装openssl包
解决
pip3 install pyOpenSSL
安装后再次运行如果还是报错,请降低加密库
pip install cryptography==38.0.1
降低版本适自己情况而定
在使用certbot时,报了这个错误,该问题是没有安装openssl包
pip3 install pyOpenSSL
安装后再次运行如果还是报错,请降低加密库
pip install cryptography==38.0.1
降低版本适自己情况而定