Python报错 | 关于requests.exceptions.SSLError解决方案

发布时间 2023-07-16 22:52:49作者: 张Zong在修行

学习爬虫遇到的错误。

报错信息:

requests.exceptions.SSLError: HTTPSConnectionPool(host=’*****’, port=443): Max retries exceeded with url: / (Caused by SSLError(“Can’t connect to HTTPS URL because the SSL module is not available.”))

解决方法:

检查是否已安装requests的依赖安装包。

pip install cryptography 
pip install pyOpenSSL
pip install certifi