How To Install libschroedinger-maeparser-dev on Ubuntu 20.04

In this tutorial we learn how to install libschroedinger-maeparser-dev on Ubuntu 20.04. libschroedinger-maeparser-dev is Development files to parse Schrödinger Maestro files

Introduction

In this tutorial we learn how to install libschroedinger-maeparser-dev on Ubuntu 20.04.

What is libschroedinger-maeparser-dev

libschroedinger-maeparser-dev is:

This package provides header files to develop one’s own software that uses a library wth an Open Source parser for Maestro (.mae) files.

There are three methods to install libschroedinger-maeparser-dev on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libschroedinger-maeparser-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 libschroedinger-maeparser-dev using apt-get by running the following command:

sudo apt-get -y install libschroedinger-maeparser-dev

Install libschroedinger-maeparser-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libschroedinger-maeparser-dev

Install libschroedinger-maeparser-dev Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libschroedinger-maeparser-dev

How To Uninstall libschroedinger-maeparser-dev on Ubuntu 20.04

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

sudo apt-get remove libschroedinger-maeparser-dev

Uninstall libschroedinger-maeparser-dev And Its Dependencies

To uninstall libschroedinger-maeparser-dev and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove libschroedinger-maeparser-dev

Remove libschroedinger-maeparser-dev Configurations and Data

To remove libschroedinger-maeparser-dev configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge libschroedinger-maeparser-dev

Remove libschroedinger-maeparser-dev configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libschroedinger-maeparser-dev

References

Summary

In this tutorial we learn how to install libschroedinger-maeparser-dev package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.