我已安装龙卷风并且以下工作正常,我可以运行hello,world
app
python -c "import tornado"
但是后面会导致错误
python -c ""from tornado.netutil import TCPServer"
导入错误
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: cannot import name TCPServer
完整代码:我正在尝试运行此https://gist.github.com/phuslu/1231481
答案 0 :(得分:2)
您从错误的包中导入了错误的内容,请尝试以下操作:
import sys, os, re
import logging
from tornado.ioloop import IOLoop
from tornado.iostream import IOStream
from tornado.tcpserver import TCPServer
作为您的进口。我试过并测试了它。