无法使 PyDev 在 Eclipe for Jython 上工作
在我的 PyDev+Eclipse 配置中,我尝试运行几个简单的 jython 模块。
我不断收到以下错误:
...\Example.py 控制台中的消息
使用:javaw[-options] class[args...]
我尝试了 PyDev 手册中给出的建议 - 配置解释器/“如果不正确怎么办”:
java.exe -cp Jython-Path\jythpn.jar org.python.util.jython interpreterInfo.py
从命令行 运行。
我收到以下错误:
IOError: [ErrNo 2} 未找到文件。
在Eclipse插件文件夹中,我找不到org.python.util.jython
我有interpreterInfo.py文件,但它是Python的,而不是Jython的。
我假设环境变量设置不当导致我无法在 PyDev 中运行 Jython 的问题。
我该如何设置它们?
我的设置配置: 计算机运行 Windows XP Eclipse:Indigo 服务版本 1 J2SDK:6更新31 Jython:2.5.2 PyDev:2.4.0
我将不胜感激任何帮助!
桑卡
In my PyDev+Eclipse configuration, I tried to run several simple jython modules.
I keep getting the following error:
...\Example.py message in console with
Usage: javaw[-options] class[args...]
I tried the suggestion given in PyDev manual - Configure Interpreter/"What if it is not correct": Run
java.exe -cp Jython-Path\jythpn.jar org.python.util.jython interpreterInfo.py
from command line.
I get the following error:
IOError: [ErrNo 2} File not found.
In Eclipse plugins folder, I cannot find org.python.util.jython
I have interpreterInfo.py file, but it is with Python, not with Jython.
I am assuming that setting up the environment variables improperly is causing my problem of not being able to run Jython in PyDev.
How do I set them up?
My set up configuration:
Computer runs on Windows XP
Eclipse: Indigo service release 1
J2SDK: 6 Update 31
Jython: 2.5.2
PyDev: 2.4.0
I shall appreciate any help!
SunKar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许 Jython jar 已损坏? (尝试将 jython.jar 作为 zip 文件打开,并检查 org.python.util.jython.class 文件是否存在)
另一件事:执行时:
java.exe -cp Jython-Path\jython.jar org.python。 util.jythonterpreterInfo.py
您是否位于包含terpreterInfo.py 的同一文件夹中?
Maybe the Jython jar is corrupted? (try opening the jython.jar as a zip file and check if the org.python.util.jython.class file is there)
Another thing: when executing:
java.exe -cp Jython-Path\jython.jar org.python.util.jython interpreterInfo.py
are you on the same folder where the interpreterInfo.py is contained?