How To Install yorick-optimpack on Kali Linux
Introduction
In this tutorial we learn how to install yorick-optimpack on Kali Linux.
What is yorick-optimpack
yorick-optimpack is:
OptimPack is a portable C library which implements algorithms for optimization of large scale problems with bound constraints. Large scale means some million variables (e.g. pixel values) or more.
The most important algorithm is VMLM-B: a variable metric method with limited memory requirements and, possibly, bound constraints on the parameters. The algorithm is based on limited memory BFGS updates with Mor? & Thuente inexact line search and gradient projection to account for bounds.
This package contains two Yorick plug-ins: one based on the newer OptimPackLegacy version and, for backward compatibility, one based on the previous OptimPack1 implementation.
There are three methods to install yorick-optimpack 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 yorick-optimpack Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install yorick-optimpack using apt-get by running the following command:
sudo apt-get -y install yorick-optimpackInstall yorick-optimpack Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install yorick-optimpack using apt by running the following command:
sudo apt -y install yorick-optimpackInstall yorick-optimpack 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 yorick-optimpack using aptitude by running the following command:
sudo aptitude -y install yorick-optimpackHow To Uninstall yorick-optimpack on Kali Linux
To uninstall only the yorick-optimpack package we can use the following command:
sudo apt-get remove yorick-optimpackUninstall yorick-optimpack And Its Dependencies
To uninstall yorick-optimpack and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove yorick-optimpackRemove yorick-optimpack Configurations and Data
To remove yorick-optimpack configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge yorick-optimpackRemove yorick-optimpack configuration, data, and all of its dependencies
We can use the following command to remove yorick-optimpack configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge yorick-optimpackDependencies
yorick-optimpack have the following dependencies:
References
Summary
In this tutorial we learn how to install yorick-optimpack package on Kali Linux using different package management tools: apt, apt-get and aptitude.