How To Install compass-layoutgala-plugin on Ubuntu 22.04

In this tutorial we learn how to install compass-layoutgala-plugin on Ubuntu 22.04. compass-layoutgala-plugin is Sass mixins implementing the Layout-gala CSS styles

Introduction

In this tutorial we learn how to install compass-layoutgala-plugin on Ubuntu 22.04.

What is compass-layoutgala-plugin

compass-layoutgala-plugin is:

This package contains a collection of Sass mixins implementing Layout-gala.

Layout-gala is a collection of 40 CSS layouts styling a single HTML markup, without hacks nor workarounds and a good cross-browser compatibility. The layouts uses techniques like negative margins, any order columns and opposite floats: http://blog.html.it/layoutgala/.

Sass is a pre-processing language for CSS. It allows you to write cleaner stylesheets and makes collaboration on your CSS a breeze.

There are three methods to install compass-layoutgala-plugin on Ubuntu 22.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 compass-layoutgala-plugin Using apt-get

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

sudo apt-get update

After updating apt database, We can install compass-layoutgala-plugin using apt-get by running the following command:

sudo apt-get -y install compass-layoutgala-plugin

Install compass-layoutgala-plugin Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install compass-layoutgala-plugin using apt by running the following command:

sudo apt -y install compass-layoutgala-plugin

Install compass-layoutgala-plugin 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 compass-layoutgala-plugin using aptitude by running the following command:

sudo aptitude -y install compass-layoutgala-plugin

How To Uninstall compass-layoutgala-plugin on Ubuntu 22.04

To uninstall only the compass-layoutgala-plugin package we can use the following command:

sudo apt-get remove compass-layoutgala-plugin

Uninstall compass-layoutgala-plugin And Its Dependencies

To uninstall compass-layoutgala-plugin and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove compass-layoutgala-plugin

Remove compass-layoutgala-plugin Configurations and Data

To remove compass-layoutgala-plugin configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge compass-layoutgala-plugin

Remove compass-layoutgala-plugin configuration, data, and all of its dependencies

We can use the following command to remove compass-layoutgala-plugin configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge compass-layoutgala-plugin

References

Summary

In this tutorial we learn how to install compass-layoutgala-plugin package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.