How To Install liguidsoap on Debian 9

In this tutorial we learn how to install liguidsoap on Debian 9. liguidsoap is control GUI for liquidsoap

Introduction

In this tutorial we learn how to install liguidsoap on Debian 9.

What is liguidsoap

liguidsoap is:

Liguidsoap is a GUI for controlling liquidsoap, using pyGTK.

It allows one to interact in various ways with:

  • outputs
  • playlists
  • queues
  • mixing table

It can control a running instance of liquidsoap or launch its own instance.

There are three methods to install liguidsoap 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 liguidsoap Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install liguidsoap

Install liguidsoap Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install liguidsoap using apt by running the following command:

sudo apt -y install liguidsoap

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

sudo aptitude -y install liguidsoap

How To Uninstall liguidsoap on Debian 9

To uninstall only the liguidsoap package we can use the following command:

sudo apt-get remove liguidsoap

Uninstall liguidsoap And Its Dependencies

To uninstall liguidsoap and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove liguidsoap

Remove liguidsoap Configurations and Data

To remove liguidsoap configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge liguidsoap

Remove liguidsoap configuration, data, and all of its dependencies

We can use the following command to remove liguidsoap configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge liguidsoap

Dependencies

liguidsoap have the following dependencies:

References

Summary

In this tutorial we learn how to install liguidsoap package on Debian 9 using different package management tools: apt, apt-get and aptitude.