tagcoll command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tagcoll: command not found
or when using sudo you get the following error message
sudo: tagcoll: command not found
Solutions to tagcoll: command not found
How To Fix tagcoll: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tagcoll is provided by tagcoll package.
tagcoll is:
tagcoll takes a collection of items categorized with multiple tags and performs various kinds of operations on them:
- organize the collection in an intuitively navigable hierarchy;
- discover and show implicit hierarchical relationships between tags;
- apply various transformations to the collection
- produce a special patch file with the differencies between two collections. Such patch files are specific to tagged collections, and can be applied and merged more freely than normal diff output;
- apply a previously generated patch file to a collection.
tagcoll has been written with the purpose of studying tagged collections and experiment with tagged collection algorithms.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tagcoll
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tagcoll.
sudo apt -y install tagcoll
Or if you have aptitude installed you can use the following command.
sudo aptitude install tagcoll
Summary
In this tutorial we learn how to fix tagcoll command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.