How To Install libwebservice-validator-css-w3c-perl on Ubuntu 18.04

In this tutorial we learn how to install libwebservice-validator-css-w3c-perl on Ubuntu 18.04. libwebservice-validator-css-w3c-perl is interface to the W3C CSS Validator

Introduction

In this tutorial we learn how to install libwebservice-validator-css-w3c-perl on Ubuntu 18.04.

What is libwebservice-validator-css-w3c-perl

libwebservice-validator-css-w3c-perl is:

WebService::Validator::CSS::W3C is an interface to the W3C CSS Validation online service http://jigsaw.w3.org/css-validator/, based on its SOAP 1.2 support. It helps to find errors in Cascading Style Sheets.

There are three methods to install libwebservice-validator-css-w3c-perl 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 libwebservice-validator-css-w3c-perl Using apt-get

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

sudo apt-get update

After updating apt database, We can install libwebservice-validator-css-w3c-perl using apt-get by running the following command:

sudo apt-get -y install libwebservice-validator-css-w3c-perl

Install libwebservice-validator-css-w3c-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libwebservice-validator-css-w3c-perl using apt by running the following command:

sudo apt -y install libwebservice-validator-css-w3c-perl

Install libwebservice-validator-css-w3c-perl 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 libwebservice-validator-css-w3c-perl using aptitude by running the following command:

sudo aptitude -y install libwebservice-validator-css-w3c-perl

How To Uninstall libwebservice-validator-css-w3c-perl on Ubuntu 18.04

To uninstall only the libwebservice-validator-css-w3c-perl package we can use the following command:

sudo apt-get remove libwebservice-validator-css-w3c-perl

Uninstall libwebservice-validator-css-w3c-perl And Its Dependencies

To uninstall libwebservice-validator-css-w3c-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libwebservice-validator-css-w3c-perl

Remove libwebservice-validator-css-w3c-perl Configurations and Data

To remove libwebservice-validator-css-w3c-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libwebservice-validator-css-w3c-perl

Remove libwebservice-validator-css-w3c-perl configuration, data, and all of its dependencies

We can use the following command to remove libwebservice-validator-css-w3c-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libwebservice-validator-css-w3c-perl

References

Summary

In this tutorial we learn how to install libwebservice-validator-css-w3c-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.