tz-converter command not found

In this troubleshooting guide we learn how to fix tz-converter command not found error message

Introduction

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

tz-converter: command not found

or when using sudo you get the following error message

sudo: tz-converter: command not found

Solutions to tz-converter: command not found

How To Fix tz-converter: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu tz-converter is provided by tz-converter package.

tz-converter is:

This tool provides a simple interface for converting the time and date between two time zones. Written in Python3 and using QtPy5, this interface allows the user to save a certain time zone and restore it after further changes. The timezone information is taken from pytz, supplying seven different regions: Africa, America, Asia, Australia, Europe, Pacific, and US.

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

sudo apt-get -y install tz-converter

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

You can also use apt command to install tz-converter.

sudo apt -y install tz-converter

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

sudo aptitude install tz-converter

Summary

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