我可以将哪个版本的 python 与 Twisted/Zope 一起使用?

发布于 2024-10-12 13:57:30 字数 229 浏览 4 评论 0原文

我注意到 Twisted 依赖于 Zope。我发现当我尝试安装 Zope 时,运行后 ./configure 它告诉我需要使用 python2.4 (不是我想使用的 python 2.5+)。

但是,我看到一些教程和指南建议对 Twisted 使用 python 2.5。所以我一般都很困惑。有没有人设置过这个并运行一些使用 zope 的 twsited Web 示例?你用的是什么版本的Python?您是否遵循某处的安装指南?

I noticed that Twisted has a dependency on Zope. I found that when I tried to install Zope, after running, ./configure it tells me I need to use python2.4 (not python 2.5+ which I would like to be using).

However, I have seen some tutorials and guides that suggested using python 2.5 for Twisted. So I'm just generally confused. Has anyone set this up and ran some of the twsited web examples that use zope? What version of python did you use? Was there an installation guide you followed somewhere?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

眼眸 2024-10-19 13:57:30

Twisted 不依赖于完整的 zope。它只是 zope.interface,这是一个小的纯- python 模块与所有 zope 分开打包。

您可以下载 .tar.gz 版本并运行通常的 python setup.py install ,这应该可以工作。或者,如果您的操作系统包含软件包管理系统,您可以检查它是否有易于安装的软件包。例如,在 debian/ubuntu 中你可以这样做:

apt-get install python-zopeinterface

甚至

apt-get install python-twisted

直接这样做。

Twisted doesn't have a dependency on full zope. It's just zope.interface, which is a small pure-python module packaged separately from all zope.

You can download the .tar.gz version and run the usual python setup.py install, that should work. Or if your operational system includes a package management system, you could check it for a easy-to-install package. Example, in debian/ubuntu you could do:

apt-get install python-zopeinterface

or even

apt-get install python-twisted

directly.

雨夜星沙 2024-10-19 13:57:30

如果您使用pip installeasy_install安装twis​​ted,它也会为您下载并安装zope.install。

If you install twisted with pip install or easy_install it will download and install zope.install for you as well.

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