How To Install python-zope.tales on Ubuntu 18.04

In this tutorial we learn how to install python-zope.tales on Ubuntu 18.04. python-zope.tales is Zope Template Application Language Expression Syntax (TALES)

Introduction

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

What is python-zope.tales

python-zope.tales is:

The Template Attribute Language Expression Syntax describes expressions that may be used to supply TAL and METAL with data. TALES is one possible expression syntax for these languages, but they are not bound to this definition. Similarly, TALES could be used in a context having nothing to do with TAL or METAL.

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

sudo apt-get -y install python-zope.tales

Install python-zope.tales Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python-zope.tales

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

sudo aptitude -y install python-zope.tales

How To Uninstall python-zope.tales on Ubuntu 18.04

To uninstall only the python-zope.tales package we can use the following command:

sudo apt-get remove python-zope.tales

Uninstall python-zope.tales And Its Dependencies

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

sudo apt-get -y autoremove python-zope.tales

Remove python-zope.tales Configurations and Data

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

sudo apt-get -y purge python-zope.tales

Remove python-zope.tales configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python-zope.tales

References

Summary

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