扭曲的 python TCP4ServerEndpoint
错误没有找到模块 TCP4....。 在 Windows 和 ubuntu 10.04 上都可以.. 我需要安装任何新的东西吗? 我尝试将 endpoints.py 复制到目录中。但没有工作
error no module TCP4.... found.
both on windows and ubuntu 10.04..
do i need to install anything new.
I tried to copy endpoints.py to a directory. but not worked
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ubuntu 10.04 包含 Twisted 10.0.0,但
twisted.internet.endpoints
模块是在 Twisted 10.1.0 中引入的。您可以在 twistedmatrix.com 或 PYPI Twisted 项目页面。安装更新版本后,以下是 TCP4ServerEndpoint 类的导入路径:
Ubuntu 10.04 includes Twisted 10.0.0, but the
twisted.internet.endpoints
module was introduced in Twisted 10.1.0. You can find more recent versions on the twistedmatrix.com or the PYPI Twisted project page.Once you have a more recent version installed, here is the import path to the TCP4ServerEndpoint class: