How To Install pytone on Ubuntu 18.04
Introduction
In this tutorial we learn how to install pytone on Ubuntu 18.04.
What is pytone
pytone is:
Pytone is a curses based Jukebox program with advanced features like crossfading, multiple players (libmad,xmms,mpg321/123), prehearing with a second soundcard, search functionality, logging, mixer functions and an English and German interface.
There are three methods to install pytone 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 pytone Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install pytone using apt-get by running the following command:
sudo apt-get -y install pytone
Install pytone Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install pytone using apt by running the following command:
sudo apt -y install pytone
Install pytone 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 pytone using aptitude by running the following command:
sudo aptitude -y install pytone
How To Uninstall pytone on Ubuntu 18.04
To uninstall only the pytone package we can use the following command:
sudo apt-get remove pytone
Uninstall pytone And Its Dependencies
To uninstall pytone and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove pytone
Remove pytone Configurations and Data
To remove pytone configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge pytone
Remove pytone configuration, data, and all of its dependencies
We can use the following command to remove pytone configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge pytone
References
Summary
In this tutorial we learn how to install pytone package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.