csvsort command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
csvsort: command not found
or when using sudo you get the following error message
sudo: csvsort: command not found
Solutions to csvsort: command not found
How To Fix csvsort: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu csvsort is provided by csvkit package.
csvkit is:
csvkit is a suite of command-line tools for converting to and working with CSV, the king of tabular file formats.
It is inspired by pdftk, gdal and the original csvcut tool by Joe Germuska and Aaron Bycoffe.
If you need to do more complex data analysis than csvkit can handle, use agate.
This package provides the command-line tools.
To fix this problem, we can install more using the command below.
sudo apt-get -y install csvkit
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install csvkit.
sudo apt -y install csvkit
Or if you have aptitude installed you can use the following command.
sudo aptitude install csvkit
Summary
In this tutorial we learn how to fix csvsort command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.