How To Install python3-libxml2-dbg on Ubuntu 20.04

In this tutorial we learn how to install python3-libxml2-dbg on Ubuntu 20.04. python3-libxml2-dbg is Python3 bindings for the GNOME XML library (debug extension) Python3 bindings for the GNOME XML library (debug extension)

Introduction

In this tutorial we learn how to install python3-libxml2-dbg on Ubuntu 20.04.

What is python3-libxml2-dbg

python3-libxml2-dbg is:

XML is a metalanguage to let you design your own markup language. A regular markup language defines a way to describe information in a certain class of documents (eg HTML). XML lets you define your own customized markup languages for many classes of document. It can do this because it’s written in SGML, the international standard metalanguage for markup languages.

This package contains the files needed to use the GNOME XML library in Python3 programs for use with the Python3 debug interpreter. Build-Ids: 44cf0da2861d50c6f4f175dd96291758a0f89173

Package: python3-libxml2-dbg Architecture: amd64 Version: 2.9.10+dfsg-5 Multi-Arch: same Priority: extra Section: debug Source: libxml2 Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian XML/SGML Group [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 1266 Depends: python3-libxml2 (= 2.9.10+dfsg-5), python3-dbg (« 3.9), python3-dbg (>= 3.8~), libc6 (>= 2.28), libxml2 (>= 2.9.1) Filename: pool/main/libx/libxml2/python3-libxml2-dbg_2.9.10+dfsg-5_amd64.deb Size: 373760 MD5sum: a4f0e8bebcf8cc997785e832afb4ac94 SHA1: c369fcc51b235cbcf9d1a71a72ed6ec8796478bb SHA256: 8de056573759fbdef8c55e248525b03bfeb076f462324f2b254fd4c166105f0f Homepage: http://xmlsoft.org Description-en: Python3 bindings for the GNOME XML library (debug extension) XML is a metalanguage to let you design your own markup language. A regular markup language defines a way to describe information in a certain class of documents (eg HTML). XML lets you define your own customized markup languages for many classes of document. It can do this because it’s written in SGML, the international standard metalanguage for markup languages.

This package contains the files needed to use the GNOME XML library in Python3 programs for use with the Python3 debug interpreter. Build-Ids: f138ee9da96d4515bfdc95f002334518e04f70c3

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

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

sudo apt-get update

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

sudo apt-get -y install python3-libxml2-dbg

Install python3-libxml2-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-libxml2-dbg using apt by running the following command:

sudo apt -y install python3-libxml2-dbg

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

sudo aptitude -y install python3-libxml2-dbg

How To Uninstall python3-libxml2-dbg on Ubuntu 20.04

To uninstall only the python3-libxml2-dbg package we can use the following command:

sudo apt-get remove python3-libxml2-dbg

Uninstall python3-libxml2-dbg And Its Dependencies

To uninstall python3-libxml2-dbg and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove python3-libxml2-dbg

Remove python3-libxml2-dbg Configurations and Data

To remove python3-libxml2-dbg configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge python3-libxml2-dbg

Remove python3-libxml2-dbg configuration, data, and all of its dependencies

We can use the following command to remove python3-libxml2-dbg configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-libxml2-dbg

References

Summary

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