How To Install libsimtkmolmodel-dev on Kali Linux

In this tutorial we learn how to install libsimtkmolmodel-dev on Kali Linux. libsimtkmolmodel-dev is C++ API for creating molecular models for SimTK (development files)

Introduction

In this tutorial we learn how to install libsimtkmolmodel-dev on Kali Linux.

What is libsimtkmolmodel-dev

libsimtkmolmodel-dev is:

Provides C++ API for creating molecular models whose dynamics can be simulated using the SimTK Simbody library. Molmodel is a programmer’s toolkit for building reduced-coordinate, yet still all-atom, models of large biopolymers such as proteins, RNA, and DNA. One can control the allowed mobility. By default, Molmodel builds torsion-coordinate models in which bond stretch and bend angles are rigid while bond torsion angles are mobile. But one is able to rigidify or free any subsets of the atoms, such as the rigid benzene ring.

Molmodel is a C++ API for biochemist-friendly molecular modeling that extends the Simbody API to simplify construction of high-performance articulated models of molecules.

This package contains development files.

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

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

sudo apt-get update

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

sudo apt-get -y install libsimtkmolmodel-dev

Install libsimtkmolmodel-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libsimtkmolmodel-dev

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

sudo aptitude -y install libsimtkmolmodel-dev

How To Uninstall libsimtkmolmodel-dev on Kali Linux

To uninstall only the libsimtkmolmodel-dev package we can use the following command:

sudo apt-get remove libsimtkmolmodel-dev

Uninstall libsimtkmolmodel-dev And Its Dependencies

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

sudo apt-get -y autoremove libsimtkmolmodel-dev

Remove libsimtkmolmodel-dev Configurations and Data

To remove libsimtkmolmodel-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libsimtkmolmodel-dev

Remove libsimtkmolmodel-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libsimtkmolmodel-dev

Dependencies

libsimtkmolmodel-dev have the following dependencies:

References

Summary

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