How To Install libjulia1 on Kali Linux

In this tutorial we learn how to install libjulia1 on Kali Linux. libjulia1 is high-performance programming language for technical computing (runtime library)

Introduction

In this tutorial we learn how to install libjulia1 on Kali Linux.

What is libjulia1

libjulia1 is:

Julia is a high-level, high-performance dynamic programming language for technical computing, with syntax that is familiar to users of other technical computing environments. It provides a sophisticated compiler, distributed parallel execution, numerical accuracy, and an extensive mathematical function library. The library, mostly written in Julia itself, also integrates mature, best-of-breed C and Fortran libraries for linear algebra, random number generation, FFTs, and string processing. Julia programs are organized around defining functions, and overloading them for different combinations of argument types (which can also be user-defined).

This package provides the Julia runtime library.

There are three methods to install libjulia1 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 libjulia1 Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libjulia1 using apt-get by running the following command:

sudo apt-get -y install libjulia1

Install libjulia1 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libjulia1 using apt by running the following command:

sudo apt -y install libjulia1

Install libjulia1 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 update

After updating apt database, We can install libjulia1 using aptitude by running the following command:

sudo aptitude -y install libjulia1

How To Uninstall libjulia1 on Kali Linux

To uninstall only the libjulia1 package we can use the following command:

sudo apt-get remove libjulia1

Uninstall libjulia1 And Its Dependencies

To uninstall libjulia1 and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libjulia1

Remove libjulia1 Configurations and Data

To remove libjulia1 configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libjulia1

Remove libjulia1 configuration, data, and all of its dependencies

We can use the following command to remove libjulia1 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libjulia1

Dependencies

libjulia1 have the following dependencies:

References

Summary

In this tutorial we learn how to install libjulia1 package on Kali Linux using different package management tools: apt, apt-get and aptitude.