How To Install python-click-threading on Ubuntu 18.04
Introduction
In this tutorial we learn how to install python-click-threading on Ubuntu 18.04.
What is python-click-threading
python-click-threading is:
Libraryfor easier multithreaded development with Click. Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary. It’s the “Command Line Interface Creation Kit”. It’s highly configurable but comes with sensible defaults out of the box.
This package contains the Python 2.7 module.
There are three methods to install python-click-threading 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 python-click-threading Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install python-click-threading using apt-get by running the following command:
sudo apt-get -y install python-click-threading
Install python-click-threading Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install python-click-threading using apt by running the following command:
sudo apt -y install python-click-threading
Install python-click-threading 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 python-click-threading using aptitude by running the following command:
sudo aptitude -y install python-click-threading
How To Uninstall python-click-threading on Ubuntu 18.04
To uninstall only the python-click-threading package we can use the following command:
sudo apt-get remove python-click-threading
Uninstall python-click-threading And Its Dependencies
To uninstall python-click-threading and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:
sudo apt-get -y autoremove python-click-threading
Remove python-click-threading Configurations and Data
To remove python-click-threading configuration and data from Ubuntu 18.04 we can use the following command:
sudo apt-get -y purge python-click-threading
Remove python-click-threading configuration, data, and all of its dependencies
We can use the following command to remove python-click-threading configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-click-threading
References
Summary
In this tutorial we learn how to install python-click-threading package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.