关于tornado.3.*的backports.ssl_match_hostname 问题

tornado.3.*运行在python2.*上出现ImportError: No module named backports.ssl_match_hostname错误

解决办法:

tornado.3.*运行在python2.*上必须要安装backports.ssl_match_hostname包

backports.ssl_match_hostname下载链接:http://pan.baidu.com/s/1jGn18Bc 密码:yiz3

安装次包前需先安装setuptools

setuptools下载链接:http://pan.baidu.com/s/12AYdw 密码:xozt

安装方法均为python库的正常安装方法:

python setup.py build

python setup.py install

原文地址:https://www.cnblogs.com/leaf1117/p/3592319.html