How To Install csb on Kali Linux

In this tutorial we learn how to install csb on Kali Linux. csb is Computational Structural Biology Toolbox (CSB)

Introduction

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

What is csb

csb is:

Computational Structural Biology Toolbox (CSB) is a Python class library for reading, storing and analyzing biomolecular structures in a variety of formats with rich support for statistical analyses.

CSB is designed for reusability and extensibility and comes with a clean, well-documented API following good object-oriented engineering practice.

This package contains some user executable tools.

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

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

sudo apt-get update

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

sudo apt-get -y install csb

Install csb Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install csb

Install csb 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 csb using aptitude by running the following command:

sudo aptitude -y install csb

How To Uninstall csb on Kali Linux

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

sudo apt-get remove csb

Uninstall csb And Its Dependencies

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

sudo apt-get -y autoremove csb

Remove csb Configurations and Data

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

sudo apt-get -y purge csb

Remove csb configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge csb

Dependencies

csb have the following dependencies:

References

Summary

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