How To Install python-xmlmarshaller on Ubuntu 18.04

In this tutorial we learn how to install python-xmlmarshaller on Ubuntu 18.04. python-xmlmarshaller is Converting Python objects to XML and back again.

Introduction

In this tutorial we learn how to install python-xmlmarshaller on Ubuntu 18.04.

What is python-xmlmarshaller

python-xmlmarshaller is:

Marshals simple Python data types into a custom XML format. The Marshaller and Unmarshaller classes can be subclassed in order to implement marshalling into a different XML DTD.

Fully compatible with PyXML implementation, enable namespace support for XML Input/Output.

There are three methods to install python-xmlmarshaller on Ubuntu 18.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 python-xmlmarshaller Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install python-xmlmarshaller

Install python-xmlmarshaller Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python-xmlmarshaller

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

sudo aptitude -y install python-xmlmarshaller

How To Uninstall python-xmlmarshaller on Ubuntu 18.04

To uninstall only the python-xmlmarshaller package we can use the following command:

sudo apt-get remove python-xmlmarshaller

Uninstall python-xmlmarshaller And Its Dependencies

To uninstall python-xmlmarshaller and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove python-xmlmarshaller

Remove python-xmlmarshaller Configurations and Data

To remove python-xmlmarshaller configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge python-xmlmarshaller

Remove python-xmlmarshaller configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python-xmlmarshaller

References

Summary

In this tutorial we learn how to install python-xmlmarshaller package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.