1

我已经安装了龙卷风并且以下工作正常,我能够运行hello,world应用程序

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

4

1 回答 1

3

您从错误的包中进行了错误的导入,请尝试以下操作:

import sys, os, re
import logging

from tornado.ioloop import IOLoop
from tornado.iostream import IOStream
from tornado.tcpserver import TCPServer

作为你的进口。我已经尝试并测试过了。

于 2013-10-23T07:52:23.637 回答