How To Install python-certbot-doc on Ubuntu 20.04

In this tutorial we learn how to install python-certbot-doc on Ubuntu 20.04. python-certbot-doc is client documentation for certbot client documentation for certbot

Introduction

In this tutorial we learn how to install python-certbot-doc on Ubuntu 20.04.

What is python-certbot-doc

python-certbot-doc is:

The objective of Certbot, Let’s Encrypt, and the ACME (Automated Certificate Management Environment) protocol is to make it possible to set up an HTTPS server and have it automatically obtain a browser-trusted certificate, without any human intervention. This is accomplished by running a certificate management agent on the web server.

This agent is used to:

  • Automatically prove to the Let’s Encrypt CA that you control the website
  • Obtain a browser-trusted certificate and set it up on your web server
  • Keep track of when your certificate is going to expire, and renew it
  • Help you revoke the certificate if that ever becomes necessary.

This package contains the documentation.

Package: python-certbot-doc Architecture: all Version: 0.40.0-1 Priority: extra Section: universe/doc Source: python-certbot Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Let’s Encrypt [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 4289 Depends: libjs-sphinxdoc (>= 1.0), sphinx-rtd-theme-common (>= 0.4.3+dfsg) Filename: pool/universe/p/python-certbot/python-certbot-doc_0.40.0-1_all.deb Size: 321972 MD5sum: 7f989fca1d80bdc66293531343c518a6 SHA1: 9a91d5670682717c5f2c493faff1e478e99a798e SHA256: b22f5cfde02509a017e610480b795105220487114bca5ca6c613b19e627bcb25 Homepage: https://certbot.eff.org/ Description-en: client documentation for certbot The objective of Certbot, Let’s Encrypt, and the ACME (Automated Certificate Management Environment) protocol is to make it possible to set up an HTTPS server and have it automatically obtain a browser-trusted certificate, without any human intervention. This is accomplished by running a certificate management agent on the web server.

This agent is used to:

  • Automatically prove to the Let’s Encrypt CA that you control the website
  • Obtain a browser-trusted certificate and set it up on your web server
  • Keep track of when your certificate is going to expire, and renew it
  • Help you revoke the certificate if that ever becomes necessary.

This package contains the documentation.

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

sudo apt-get -y install python-certbot-doc

Install python-certbot-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python-certbot-doc

Install python-certbot-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 python-certbot-doc using aptitude by running the following command:

sudo aptitude -y install python-certbot-doc

How To Uninstall python-certbot-doc on Ubuntu 20.04

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

sudo apt-get remove python-certbot-doc

Uninstall python-certbot-doc And Its Dependencies

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

sudo apt-get -y autoremove python-certbot-doc

Remove python-certbot-doc Configurations and Data

To remove python-certbot-doc configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge python-certbot-doc

Remove python-certbot-doc configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge python-certbot-doc

References

Summary

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