(20210301已解决)Can‘t connect to HTTPS URL because the SSL module is not available.

  • Overview

    使用requests发送消息,出现如下错误:

    Can’t connect to HTTPS URL because the SSL module is not available.

    请求的url并无问题,Linux端的运行也正常,只有Windows下面anaconda运行异常。

  • Solution

    参考中3,4,5是比较常见的几种解释,于我情况无作用。

    我的情况是采用Reference1中第二个答案:

    # copy the files
    libcrypto-1_1-x64.*
    libssl-1_1-x64.*
    # from ~\anaconda3\Library\bin to ~\anaconda2\DLLs
    

    如此可以解决问题,具体原因还是不太懂,主要是对ssl这个网络传输层面理解的不够深入。

  • References

  1. Requests (Caused by SSLError(“Can’t connect to HTTPS URL because the SSL module is not available.”) Error in PyCharm requesting website
  2. Can’t connect to HTTPS URL because the SSL module is not available #8273
  3. python3使用requests模块发https请求,提示caused by ssl error, can’t connect to https url because the ssl module is not available
  4. 再开一贴,python使用requests库时,访问https的网站报错SSL module is not available
  5. python3遇到Can’t connect to HTTPS URL because the SSL module is not available.

猜你喜欢

转载自blog.csdn.net/The_Time_Runner/article/details/114434610