How To Install python-django-doc on Ubuntu 20.04

In this tutorial we learn how to install python-django-doc on Ubuntu 20.04. python-django-doc is High-level Python web development framework (documentation) High-level Python web development framework (documentation)

Introduction

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

What is python-django-doc

python-django-doc is:

Django is a high-level web application framework that loosely follows the model-view-controller design pattern.

Python’s equivalent to Ruby on Rails, Django lets you build complex data-driven websites quickly and easily - Django focuses on automating as much as possible and adhering to the “Don’t Repeat Yourself” (DRY) principle.

Django additionally emphasizes reusability and “pluggability” of components; many generic third-party “applications” are available to enhance projects or to simply to reduce development time even further.

This package contains the HTML documentation and example projects.

Package: python-django-doc Architecture: all Version: 2:2.2.12-1 Multi-Arch: foreign Priority: optional Section: doc Source: python-django Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Python Modules Team [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 28672 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-django/python-django-doc_2.2.12-1_all.deb Size: 3143028 MD5sum: 627aee7f85cf6f48266bcefee8ec35c9 SHA1: 5dec3360d8f2ad8717a2c58c39f5ccad944ac4c3 SHA256: 221363867dde40237c4870e6dc822181757985060df1da31b6515ac29e9dce1d Homepage: http://www.djangoproject.com/ Description-en: High-level Python web development framework (documentation) Django is a high-level web application framework that loosely follows the model-view-controller design pattern.

Python’s equivalent to Ruby on Rails, Django lets you build complex data-driven websites quickly and easily - Django focuses on automating as much as possible and adhering to the “Don’t Repeat Yourself” (DRY) principle.

Django additionally emphasizes reusability and “pluggability” of components; many generic third-party “applications” are available to enhance projects or to simply to reduce development time even further.

This package contains the HTML documentation and example projects.

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

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

Install python-django-doc Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python-django-doc

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

sudo aptitude -y install python-django-doc

How To Uninstall python-django-doc on Ubuntu 20.04

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

sudo apt-get remove python-django-doc

Uninstall python-django-doc And Its Dependencies

To uninstall python-django-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-django-doc

Remove python-django-doc Configurations and Data

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

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

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

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

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

References

Summary

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