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.
After updating apt database, We can install jython
using apt-get
by running the following command:
Install jython Using apt
Update apt database with apt
using the following command.
After updating apt database, We can install jython
using apt
by running the following command:
Install 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.
After updating apt database, We can install jython
using aptitude
by running the following command:
How To Uninstall jython on Kali Linux
To uninstall only the jython
package we can use the following command:
Uninstall jython And Its Dependencies
To uninstall jython
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
Remove jython Configurations and Data
To remove jython
configuration and data from Kali Linux we can use the following command:
Remove 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:
Dependencies
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
.