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

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

Introduction

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

What is python-djangocms-admin-style

python-djangocms-admin-style 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 Python 2 version of the admin styles required by django CMS.

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

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

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

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

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

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

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

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

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

Uninstall python-djangocms-admin-style And Its Dependencies

To uninstall python-djangocms-admin-style 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

Remove python-djangocms-admin-style Configurations and Data

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

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

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

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

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

References

Summary

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