How To Install python3-pil-dbg on Ubuntu 20.04

In this tutorial we learn how to install python3-pil-dbg on Ubuntu 20.04. python3-pil-dbg is Python Imaging Library (Python3 debug extension) Python Imaging Library (Python3 debug extension)

Introduction

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

What is python3-pil-dbg

python3-pil-dbg is:

The Python Imaging Library (PIL) adds an image object to your Python interpreter. You can load images from a variety of file formats, and apply a rich set of image operations to them.

This package contains the extension built for the Python debug interpreter. Build-Ids: 74fb3faf822edef925afe3343e1e6cf33b7dd88f 7c6263cd28b0a74a9d0db7319130b90b221d7d0c 9978b7aea6830619c200ca237f5cd4179418dfbe d274ecebdd05effa42cea1fcc5b8cdf78f80c595 e36939b049b07d316bd4562ffbaa1dc19fcee1d4 fd9b0eeac5f43799a88d7f14adac1feec37f9c8e

Package: python3-pil-dbg Architecture: amd64 Version: 7.0.0-4build1 Multi-Arch: same Priority: extra Section: debug Source: pillow Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Matthias Klose [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 3588 Depends: python3-pil (= 7.0.0-4build1), python3-dbg, libc6 (>= 2.14), libfreetype6 (>= 2.9.1), libimagequant0 (>= 2.11.10), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libtiff5 (>= 4.0.3), libwebp6 (>= 0.5.1), libwebpdemux2 (>= 0.5.1), libwebpmux3 (>= 0.6.1-2), zlib1g (>= 1:1.1.4) Breaks: python3-imaging-dbg (« 1.1.7+2.0.0-1.1) Replaces: python3-imaging-dbg (« 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-pil-dbg_7.0.0-4build1_amd64.deb Size: 1277180 MD5sum: d7485497fa88598997d60d8cb8d925e0 SHA1: dc27efd1d5f0200f4c6defbe400efb5b280c2d5f SHA256: 6b8c58870e87b79c81a48f0237c3b1d166b18ef6b0b90f3361e7e8a65b42e674 Homepage: http://python-pillow.github.io/ Description-en: Python Imaging Library (Python3 debug extension) The Python Imaging Library (PIL) adds an image object to your Python interpreter. You can load images from a variety of file formats, and apply a rich set of image operations to them.

This package contains the extension built for the Python debug interpreter. Build-Ids: 42ae1090cc997e18c121a0ebd9acf41bb6fb62a0 5019bceaba1495df7d9dad61659e76ab9d294cf5 907c5ecbc05f350b00da12f19e83e2e74f70efc0 ad69bfba52e9e749212e364d811456a3bdd46cbd c9073b21d243fa48cd6948605c1da3edab3732b7 e047a7da83861b7cf3c54faedd10709744ec6595

There are three methods to install python3-pil-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-pil-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-pil-dbg using apt-get by running the following command:

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

Install python3-pil-dbg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-pil-dbg

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

sudo aptitude -y install python3-pil-dbg

How To Uninstall python3-pil-dbg on Ubuntu 20.04

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

sudo apt-get remove python3-pil-dbg

Uninstall python3-pil-dbg And Its Dependencies

To uninstall python3-pil-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-pil-dbg

Remove python3-pil-dbg Configurations and Data

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

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

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

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

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

References

Summary

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