otpclient-cli command not found

In this troubleshooting guide we learn how to fix otpclient-cli command not found error message

Introduction

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

otpclient-cli: command not found

or when using sudo you get the following error message

sudo: otpclient-cli: command not found

Solutions to otpclient-cli: command not found

How To Fix otpclient-cli: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu otpclient-cli is provided by otpclient-cli package.

otpclient-cli is:

OTPClient-CLI is simplified version of OTPClient. Only two operations are supported:

  • list: this will print all pairs of account and issuer that are in the database.
  • show: this will show the OTP for a given account/issuer.

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

sudo apt-get -y install otpclient-cli

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

You can also use apt command to install otpclient-cli.

sudo apt -y install otpclient-cli

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

sudo aptitude install otpclient-cli

Summary

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