How To Install trac-mastertickets on Ubuntu 18.04

In this tutorial we learn how to install trac-mastertickets on Ubuntu 18.04. trac-mastertickets is adds inter-ticket dependencies to Trac

Introduction

In this tutorial we learn how to install trac-mastertickets on Ubuntu 18.04.

What is trac-mastertickets

trac-mastertickets is:

This Trac plugin adds “blocks” and “blocked by” fields to each ticket, enabling you to express dependencies between tickets. It also provides a GraphvizPlugin-based dependency-graph feature for those tickets having dependencies specified, allowing you to visually understand the dependency tree.

There are three methods to install trac-mastertickets 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 trac-mastertickets Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install trac-mastertickets

Install trac-mastertickets Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install trac-mastertickets

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

sudo aptitude -y install trac-mastertickets

How To Uninstall trac-mastertickets on Ubuntu 18.04

To uninstall only the trac-mastertickets package we can use the following command:

sudo apt-get remove trac-mastertickets

Uninstall trac-mastertickets And Its Dependencies

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

sudo apt-get -y autoremove trac-mastertickets

Remove trac-mastertickets Configurations and Data

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

sudo apt-get -y purge trac-mastertickets

Remove trac-mastertickets configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge trac-mastertickets

References

Summary

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