扭曲的 python TCP4ServerEndpoint

发布于 2024-11-01 17:14:34 字数 102 浏览 1 评论 0原文

错误没有找到模块 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

未蓝澄海的烟 2024-11-08 17:14:34

Ubuntu 10.04 包含 Twisted 10.0.0,但 twisted.internet.endpoints 模块是在 Twisted 10.1.0 中引入的。您可以在 twistedmatrix.comPYPI Twisted 项目页面

安装更新版本后,以下是 TCP4ServerEndpoint 类的导入路径:

from twisted.internet.endpoints import 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:

from twisted.internet.endpoints import TCP4ServerEndpoint
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文