Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tornado import error: 'no named module singledispatch'

Tags:

python

tornado

After I installed tornado, upon testing an instance, it shows the error no module named singledispatch.

But when I import tornado it's ok.

Need help.

like image 515
rgi Avatar asked Mar 29 '16 02:03

rgi


1 Answers

Somehow you installed Tornado without its required dependencies. Install them with:

python -m pip install singledispatch backports_abc

Here's the list of new dependencies in Tornado 4.3.

like image 130
A. Jesse Jiryu Davis Avatar answered Sep 18 '22 12:09

A. Jesse Jiryu Davis