How To Install choqok on Ubuntu 20.04

In this tutorial we learn how to install choqok on Ubuntu 20.04. choqok is KDE micro-blogging client

Introduction

In this tutorial we learn how to install choqok on Ubuntu 20.04.

What is choqok

choqok is:

Choqok is a fast, efficient and simple to use micro-blogging client for KDE. It currently supports the twitter.com and identi.ca microblogging services.

Other notable features include: * Support for user + friends time-lines. * Support for @Reply time-lines. * Support for sending and receiving direct messages. * Twitpic.com integration. * The ability to use multiple accounts simultaneously. * Support for search APIs for all services. * KWallet integration. * Support for automatic shortening urls with more than 30 characters. * Support for configuring status lists appearance.

There are three methods to install choqok on Ubuntu 20.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 choqok Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install choqok

Install choqok Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install choqok

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

sudo aptitude -y install choqok

How To Uninstall choqok on Ubuntu 20.04

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

sudo apt-get remove choqok

Uninstall choqok And Its Dependencies

To uninstall choqok and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove choqok

Remove choqok Configurations and Data

To remove choqok configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge choqok

Remove choqok configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge choqok

References

Summary

In this tutorial we learn how to install choqok package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.