How To Install jython on Kali Linux
Introduction
In this tutorial we learn how to install jython on Kali Linux.
What is jython
jython is:
Jython is an implementation of the high-level, dynamic, object-oriented language Python seamlessly integrated with the Java platform. The predecessor to Jython, JPython, is certified as 100% Pure Java.
Jython is complementary to Java and allows the two languages to be freely mixed. It is especially suited for embedded scripting, interactive experimentation and rapid application development, and it can interact with Java packages or with running Java applications.
There are three methods to install jython on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install jython Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install jython using apt-get by running the following command:
sudo apt-get -y install jythonInstall jython Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install jython using apt by running the following command:
sudo apt -y install jythonInstall jython Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install jython using aptitude by running the following command:
sudo aptitude -y install jythonHow To Uninstall jython on Kali Linux
To uninstall only the jython package we can use the following command:
sudo apt-get remove jythonUninstall jython And Its Dependencies
To uninstall jython and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove jythonRemove jython Configurations and Data
To remove jython configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge jythonRemove jython configuration, data, and all of its dependencies
We can use the following command to remove jython configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge jythonDependencies
jython have the following dependencies:
- antlr3.2
- libantlr-java
- libasm-java
- libcommons-compress-java
- libguava-java
- libicu4j-java
- libjaxb-api-java
- libjffi-java
- libjline2-java
- libjnr-constants-java
- libjnr-ffi-java
- libjnr-netdb-java
- libjnr-posix-java
- libnetty-java
- libservlet-api-java
- libstringtemplate-java
- default-jre-headless
References
Summary
In this tutorial we learn how to install jython package on Kali Linux using different package management tools: apt, apt-get and aptitude.