如何使用 Jython 和 Eclipse/PyDev 设置 springpython?
我在使用 PyDev 和 Jython 设置 SpringPython 时遇到问题,
我通过以下方式安装了 Spring python:
jython setup.py 安装
并且安装程序已成功将库安装到我的 jython 安装中。
看!:
在我的 PyDev 项目中,我选择了 jython 解释器并有 c:\jython2.5.1\Lib\site-我的库路径中的包:
我的 eclipse 环境无法解析新类:
我还需要做什么才能安装这个宝贝?
也许我应该只使用 Java 版本的 spring...
谢谢!
I'm having trouble setting up SpringPython with PyDev and Jython
I've installed Spring python by:
jython setup.py install
and the setup installed the library to my jython installation successfully.
See!:
In my PyDev project i've selected the jython interpreter and have c:\jython2.5.1\Lib\site-packages in my Library paths:
My eclipse environment fails to resolve the new classes:
What else do I need to do to install this baby?
Perhaps I should just be using the Java version of spring...
Thanks SO!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用于编译 Python 文件的 python 解释器由 PyDev 在项目级别指定。我怀疑虽然您确实安装了 Jython,但您的 Eclipse 项目 (katas) 仍然使用 CPython。
请执行以下步骤来解决此问题:
您的文件现在应该使用 Jython 正确编译。
正如提问者本人所指出的,您可能需要重新启动编辑器(或 Eclipse 本身)。
The python interpreter that is used to compile your Python files is specified by PyDev on the project level. I suspect that while you do have Jython installed, your Eclipse project (katas) still uses CPython.
Perform the following steps to fix this:
Your files should now be compiled correctly using Jython.
As noted by the asker himself, you may need to restart your editor (or the Eclipse itself).
原来我只需要重新启动 eclipse 就可以了。
Turns out that I just needed to restart eclipse, there you go.