哪里可以获取Python ANTLR包来使用StringTemplate?

发布于 2024-10-20 03:21:21 字数 378 浏览 3 评论 0原文

我想做一些代码生成,StringTemplate 看起来是一个非常适合这项工作的工具。我从 PyPi easy_installed stringtemplate3 ,但是当我尝试导入它时,我得到:

ImportError: No module named antlr

我对此感到困惑,因为我认为 ANTLR 依赖于 StringTemplate (如网站所述),而不是相反。无论如何,我找不到正确的包来解决这个问题。安装 antlr_python_runtime 没有帮助。

有什么提示吗?

I'd like to do some code generation, and StringTemplate looks like a pretty good tool for the job. I easy_installed stringtemplate3 from PyPi, but when I try to import it I get:

ImportError: No module named antlr

I am confused by this because I thought that ANTLR depended on StringTemplate (as the website says), not the other way around. In any case, I cannot find the correct package to fix this. Installing antlr_python_runtime did not help.

Any hints?

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

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

发布评论

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

评论(2

只有一腔孤勇 2024-10-27 03:21:21

您需要安装 python-antlr 软件包才能使用 stringtemplate3。在 Ubuntu 上安装的示例:

% sudo aptitude install python-antlr
% virtualenv ~/virt
% . ~/virt/bin/activate
(virt)~% easy_install stringtemplate3
(virt)~% python -c 'import stringtemplate3'

FWIW 这个软件包在 Macports 上名为 py26-antlr3(不确定您使用的是哪个平台/软件包管理器)。

You need to have the python-antlr package installed to use stringtemplate3. Example of installing on Ubuntu:

% sudo aptitude install python-antlr
% virtualenv ~/virt
% . ~/virt/bin/activate
(virt)~% easy_install stringtemplate3
(virt)~% python -c 'import stringtemplate3'

FWIW this package is named py26-antlr3 on Macports (not sure which platform / package manager you're using).

紫竹語嫣☆ 2024-10-27 03:21:21

我遇到了同样的问题并打包了 antlr python 库:你可以 pip install git+git://github.com/kynan/antlr.git#egg=antlr安装它。

I was facing the same issue and packaged the antlr python library: you can pip install git+git://github.com/kynan/antlr.git#egg=antlr to install it.

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