How To Install python-djangocms-admin-style-common on Ubuntu 18.04

In this tutorial we learn how to install python-djangocms-admin-style-common on Ubuntu 18.04. python-djangocms-admin-style-common is CSS styles for the django CMS admin interface (common assets)

Introduction

In this tutorial we learn how to install python-djangocms-admin-style-common on Ubuntu 18.04.

What is python-djangocms-admin-style-common

python-djangocms-admin-style-common is:

django CMS is a modern web publishing platform built with Django. It offers out-of-the-box support for the common features expected from a CMS, but can also be easily customised and extended by developers to create a site that is tailored to their precise needs.

django CMS is a well-tested CMS platform that powers sites both large and small. Here are a few of the key features:

  • robust internationalisation (i18n) support for creating multilingual sites
  • virtually unlimited undo history, allowing editors to revert to a previous version
  • front-end editing, providing rapid access to the content management interface
  • support for a variety of editors with advanced text editing features
  • a flexible plugins system that lets developers put powerful tools at the fingertips of editors, without overwhelming them with a difficult interface

This package contains the common assets of the admin styles required by django CMS.

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

sudo apt-get -y install python-djangocms-admin-style-common

Install python-djangocms-admin-style-common Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python-djangocms-admin-style-common using apt by running the following command:

sudo apt -y install python-djangocms-admin-style-common

Install python-djangocms-admin-style-common 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-djangocms-admin-style-common using aptitude by running the following command:

sudo aptitude -y install python-djangocms-admin-style-common

How To Uninstall python-djangocms-admin-style-common on Ubuntu 18.04

To uninstall only the python-djangocms-admin-style-common package we can use the following command:

sudo apt-get remove python-djangocms-admin-style-common

Uninstall python-djangocms-admin-style-common And Its Dependencies

To uninstall python-djangocms-admin-style-common and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove python-djangocms-admin-style-common

Remove python-djangocms-admin-style-common Configurations and Data

To remove python-djangocms-admin-style-common configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge python-djangocms-admin-style-common

Remove python-djangocms-admin-style-common configuration, data, and all of its dependencies

We can use the following command to remove python-djangocms-admin-style-common configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python-djangocms-admin-style-common

References

Summary

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