How To Install ytcc on Debian 11
Introduction
In this tutorial we learn how to install ytcc
on Debian 11.
What is ytcc
ytcc is:
ytcc is a command Line tool to keep track of your favourite YouTube channels without signing up for a Google account.
ytcc manages your defined channels and lets you update, view (with mpv), download videos while keeping track of watched videos.
Videos can be filtered with different criteria (date, channel name) in a batch way or within a minimal gui.
There are three methods to install ytcc
on Debian 11. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install ytcc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install ytcc
using apt-get
by running the following command:
sudo apt-get -y install ytcc
Install ytcc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install ytcc
using apt
by running the following command:
sudo apt -y install ytcc
Install ytcc 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 ytcc
using aptitude
by running the following command:
sudo aptitude -y install ytcc
How To Uninstall ytcc on Debian 11
To uninstall only the ytcc
package we can use the following command:
sudo apt-get remove ytcc
Uninstall ytcc And Its Dependencies
To uninstall ytcc
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove ytcc
Remove ytcc Configurations and Data
To remove ytcc
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge ytcc
Remove ytcc configuration, data, and all of its dependencies
We can use the following command to remove ytcc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge ytcc
Dependencies
ytcc have the following dependencies:
References
Summary
In this tutorial we learn how to install ytcc
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.