1

我有 Java 1.6。我已经按照以下步骤在 Windows 上安装了 Jython:

  1. 下载“jython-installer-2.7-b1.jar”
  2. 打开命令提示符 --> 转到保存 jython-installer-2.7-b1.jar 的位置/文件夹
  3. 执行命令 java -jar jython-installer-2.7-b1.jar
  4. Jython 安装 GUI 打开并按照说明安装 jython
  5. 设置路径和 JYTHON_HOME(在我的例子中,它分别是 "C:\jython2.7b1\bin" 和 "C:\jython2.7b1")

Jython 安装成功。现在我想安装机器人框架。我尝试使用 "robotframework-2.7.7.win32.exe" 安装机器人框架。在第二步,显示以下信息消息:“在注册表中找不到 Python 安装”

所以,我明白 Python 是安装 Robot Framework 所必需的。但是,我想在不使用 Jython 安装 Python 的情况下安装 Robot Framework。有没有办法做到这一点?

4

2 回答 2

1

根据文档,Windows 安装程序需要安装 Python。也许您可以在安装 Robot Framework(未测试)后将其卸载。

如果您对 Jython 2.5 没问题,您应该使用独立的 JAR 发行版。如果你真的想要 Jython 2.7,那么你可能需要从源代码安装,但它看起来并不复杂。

于 2013-04-05T09:59:42.037 回答
1

I have not used this framework before, but from what I understood from the documentation and based on my Java experience, I would recommend you to download the Standalone JAR Package (which, for the latest version is: robotframework-2.7.7.jar (at http://code.google.com/p/robotframework/downloads/detail?name=robotframework-2.7.7.jar&can=2&q= )

According to the Wiki and the download notes, this package is standalone and already contains Jython, so it doesn't require additional installations of anything besides Java.

You can confirm this at: http://code.google.com/p/robotframework/wiki/Installation#Stand-alone_JAR_package

于 2013-04-05T09:53:35.163 回答