我試圖讓Python扭曲到我的Ubuntu 11.04盒子上。Python noob:「ImportError:No module named internet」
我做sudo apt-get install python-twisted
然而,當我嘗試下面的代碼:
from twisted.internet import protocol, reactor
class Echo(protocol.Protocol):
def dataReceived(self, data):
self.transport.write(data)
class EchoFactory(protocol.Factory):
def buildProtocol(self, addr):
return Echo()
reactor.listenTCP(1234, EchoFactory())
reactor.run()
我得到這個錯誤,我不能去的底部:
Traceback (most recent call last):
File "eamorr.py", line 1, in <module>
from twisted.internet import protocol, reactor
File "/home/eamorr/Desktop/twisted.py", line 1, in <module>
ImportError: No module named internet
任何幫助最受讚賞。
確實[這個答案可以幫助您?] [1]你有一個模塊名爲扭曲(在你的應用程序)? [1]:http://superuser.com/questions/161960/installed-python-module-is-not-found –
這似乎我的系統上運行。嘗試導入扭曲,如果它的工作? –