ods2tsv command not found

In this troubleshooting guide we learn how to fix ods2tsv command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ods2tsv: command not found

or when using sudo you get the following error message

sudo: ods2tsv: command not found

Solutions to ods2tsv: command not found

How To Fix ods2tsv: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ods2tsv is provided by ods2tsv package.

ods2tsv is:

Simple command line interface utility that takes one or more ods files as input and convert them into tabulated separated value (tsv simple text files). Each ods file will create an output directory of the same name, containing all the spreadsheets (one tsv file per spreadsheet).

To fix this problem, we can install more using the command below.

sudo apt-get -y install ods2tsv

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install ods2tsv.

sudo apt -y install ods2tsv

Or if you have aptitude installed you can use the following command.

sudo aptitude install ods2tsv

Summary

In this tutorial we learn how to fix ods2tsv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.