哪里可以获取Python ANTLR包来使用StringTemplate?
我想做一些代码生成,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要安装
python-antlr
软件包才能使用stringtemplate3
。在 Ubuntu 上安装的示例:FWIW 这个软件包在 Macports 上名为 py26-antlr3(不确定您使用的是哪个平台/软件包管理器)。
You need to have the
python-antlr
package installed to usestringtemplate3
. Example of installing on Ubuntu:FWIW this package is named
py26-antlr3
on Macports (not sure which platform / package manager you're using).我遇到了同样的问题并打包了 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.