【Error】SSL InsecurePlatform error when using Requests package

使用requests时会出席SSL InsecurePlatform error when using Requests package的错误,一般情况下python2.7.10以下的环境会出现此错误。

解决方法:

  安装requests[security] 而不是requests,因为前者会安装三个额外的三方扩展

  • pyOpenSSL
  • ndg-httpsclient
  • pyasnl  

当然具体解释请参考:http://stackoverflow.com/questions/31811949/pip-install-requestssecurity-vs-pip-install-requests-difference

转载于:https://www.cnblogs.com/nju2014/p/5330160.html

你可能感兴趣的:(【Error】SSL InsecurePlatform error when using Requests package)