编程爱好者之家

ImportError: Can't connect to HTTPS URL because the SSL module is not available.

2024-07-01 15:56:43 16

linux上执行python代码的时候提示ImportError: Can't connect to HTTPS URL because the SSL module is not available.


原因:这个错误表明你正在尝试连接到一个HTTPS URL,但是Python环境中没有可用的SSL模块。这通常发生在Python没有正确安装SSL支持或者在某些系统上缺少必要的SSL库。


解决方案:

安装openssl安全库

sudo yum install openssl


同类文章