How To Install compass-fancy-buttons-plugin on Debian 9
Introduction
In this tutorial we learn how to install compass-fancy-buttons-plugin on Debian 9.
What is compass-fancy-buttons-plugin
compass-fancy-buttons-plugin is:
Compass is a framework for compiling CSS from similar yet more flexible Sass (either .sass or .scss) source files.
Fancy Buttons helps you easily style buttons with beautiful CSS3 features like gradients, rounded corners, etc. Don’t worry the buttons also degrade nicely for browsers not supporting CSS3.
There are three methods to install compass-fancy-buttons-plugin on Debian 9. 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-fancy-buttons-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-fancy-buttons-plugin using apt-get by running the following command:
sudo apt-get -y install compass-fancy-buttons-plugin
Install compass-fancy-buttons-plugin Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install compass-fancy-buttons-plugin using apt by running the following command:
sudo apt -y install compass-fancy-buttons-plugin
Install compass-fancy-buttons-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 Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install compass-fancy-buttons-plugin using aptitude by running the following command:
sudo aptitude -y install compass-fancy-buttons-plugin
How To Uninstall compass-fancy-buttons-plugin on Debian 9
To uninstall only the compass-fancy-buttons-plugin package we can use the following command:
sudo apt-get remove compass-fancy-buttons-plugin
Uninstall compass-fancy-buttons-plugin And Its Dependencies
To uninstall compass-fancy-buttons-plugin and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove compass-fancy-buttons-plugin
Remove compass-fancy-buttons-plugin Configurations and Data
To remove compass-fancy-buttons-plugin configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge compass-fancy-buttons-plugin
Remove compass-fancy-buttons-plugin configuration, data, and all of its dependencies
We can use the following command to remove compass-fancy-buttons-plugin configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge compass-fancy-buttons-plugin
Dependencies
compass-fancy-buttons-plugin have the following dependencies:
References
Summary
In this tutorial we learn how to install compass-fancy-buttons-plugin package on Debian 9 using different package management tools: apt, apt-get and aptitude.