csvtool command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
csvtool: command not found
or when using sudo you get the following error message
sudo: csvtool: command not found
Solutions to csvtool: command not found
How To Fix csvtool: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu csvtool is provided by csvtool package.
csvtool is:
OCaml CSV is a library to read and write CSV (comma-separated values) files. It also supports all extensions used by Excel - eg. quotes, newlines, 8 bit characters in fields, etc.
This package contains csvtool, a handy command line tool for handling CSV files from shell scripts.
To fix this problem, we can install more using the command below.
sudo apt-get -y install csvtool
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install csvtool.
sudo apt -y install csvtool
Or if you have aptitude installed you can use the following command.
sudo aptitude install csvtool
Summary
In this tutorial we learn how to fix csvtool command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.