How To Install python-vte on Debian 9

In this tutorial we learn how to install python-vte on Debian 9. python-vte is Python bindings for the VTE widget set

Introduction

In this tutorial we learn how to install python-vte on Debian 9.

What is python-vte

python-vte is:

The VTE library provides a terminal emulator widget VteTerminal for applications using the GTK+ toolkit. It also provides the VtePTY object containing functions for starting a new process on a new pseudo-terminal and for manipulating pseudo-terminals.

This package contains the Python bindings to the VTE library for GTK+ 2.x.

There are three methods to install python-vte on Debian 9. 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-vte 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-vte using apt-get by running the following command:

sudo apt-get -y install python-vte

Install python-vte Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python-vte

Install python-vte 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install python-vte

How To Uninstall python-vte on Debian 9

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

sudo apt-get remove python-vte

Uninstall python-vte And Its Dependencies

To uninstall python-vte and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove python-vte

Remove python-vte Configurations and Data

To remove python-vte configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge python-vte

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

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

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

Dependencies

python-vte have the following dependencies:

References

Summary

In this tutorial we learn how to install python-vte package on Debian 9 using different package management tools: apt, apt-get and aptitude.