Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I install jython on Windows 7?

I have downloaded "jython-installer-2.7-b1.jar". I want to install it on Windows 7. What are the steps can I follow? Please guide me.

like image 522
Ripon Al Wasim Avatar asked Apr 26 '13 11:04

Ripon Al Wasim


People also ask

Where is Jython installed?

Installer Jar After this completes, Jython is installed in the directory you selected. Executing a script in the install directory, jython on Unix-like systems or jython.exe on Windows, will start up the Jython console, which can be used to dynamically explore Jython and the Java runtime, or to run Jython scripts.

Does Jython require Python installation?

Yes. Jython is an implementation of the Python language in Java. We strive to ensure that Jython remains as compatible with CPython as possible. The latest Jython release (2.2) implements the same language as CPython 2.2 and many of the CPython standard library modules.

What version of Python is Jython?

Jython compiles Python 2. x code to JVM bytecode and runs the resulting program on the JVM. In some cases a Jython-compiled program will run faster than its CPython counterpart, but not always.


1 Answers

Pre requisite: Installation of Java

Follow the following steps:

  1. Run "jython-installer-2.7-b1.jar" as below command: java -jar jython-installer-2.7-b1.jar
  2. Follow the instruction from Jython Installation pop up
  3. After successful installation set PATH as C:\jython2.7b1\bin
  4. Open command prompt and execute the command as below: jython --version
  5. The output as "Jython 2.7b1" would verify the complete installation and setting path
like image 116
Ripon Al Wasim Avatar answered Sep 21 '22 17:09

Ripon Al Wasim