[Level 1] How to install Jython on Ubuntu.

You have two way to install jython on Ubuntu:
1. Use apt-get:
# sudo apt-get -y install jython
# jython --version
2. Download source:
# cd /tmp
# wget http://sourceforge.net/projects/jython/files/jython/2.5.2/jython_installer-2.5.2.jar/download
# mv ./download ./jython.jar
# java -jar ./jython.jar
... following the wizard.
# export PATH=$PATH:/opt/jython/bin # (if you installed Jython in /opt/jython)
# jython --version
Wish this helps.
regards,
Stanley Huang

Comments

  1. Thanks. You had just the answer I was looking for. You might add that when running the install wizard option 9 ( standalone jar ) will not work.

    ReplyDelete
  2. Hi Chris:

    Thanks for your reply.

    regards,

    Stanley Huang

    ReplyDelete
  3. Hi Chris:

    Thanks for your reply.

    regards,

    Stanley Huang

    ReplyDelete

Post a Comment

Popular posts from this blog

[Level 1] Rar tool for Solaris.

[Level 2] iif in Python