How To Install ansible-tower-cli-doc on Ubuntu 20.04

In this tutorial we learn how to install ansible-tower-cli-doc on Ubuntu 20.04. ansible-tower-cli-doc is documentation for tower-cli command line tool and library

Introduction

In this tutorial we learn how to install ansible-tower-cli-doc on Ubuntu 20.04.

What is ansible-tower-cli-doc

ansible-tower-cli-doc is:

tower-cli is a command line tool for Ansible Tower. It allows Tower commands to be easily run from the Unix command line. It can also be used as a client library for other Python apps, or as a reference for others developing API interactions with Tower’s REST API.

This package contains the documentation for the command line tool and the library.

There are three methods to install ansible-tower-cli-doc 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 ansible-tower-cli-doc Using apt-get

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

sudo apt-get update

After updating apt database, We can install ansible-tower-cli-doc using apt-get by running the following command:

sudo apt-get -y install ansible-tower-cli-doc

Install ansible-tower-cli-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install ansible-tower-cli-doc using apt by running the following command:

sudo apt -y install ansible-tower-cli-doc

Install ansible-tower-cli-doc 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 ansible-tower-cli-doc using aptitude by running the following command:

sudo aptitude -y install ansible-tower-cli-doc

How To Uninstall ansible-tower-cli-doc on Ubuntu 20.04

To uninstall only the ansible-tower-cli-doc package we can use the following command:

sudo apt-get remove ansible-tower-cli-doc

Uninstall ansible-tower-cli-doc And Its Dependencies

To uninstall ansible-tower-cli-doc and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove ansible-tower-cli-doc

Remove ansible-tower-cli-doc Configurations and Data

To remove ansible-tower-cli-doc configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge ansible-tower-cli-doc

Remove ansible-tower-cli-doc configuration, data, and all of its dependencies

We can use the following command to remove ansible-tower-cli-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge ansible-tower-cli-doc

References

Summary

In this tutorial we learn how to install ansible-tower-cli-doc package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.