harmony command not found

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

Introduction

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

harmony: command not found

or when using sudo you get the following error message

sudo: harmony: command not found

Solutions to harmony: command not found

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

In Ubuntu harmony is provided by python3-harmony package.

python3-harmony is:

A program and library for performing various actions with the Discord messaging service. Currently, it supports:

  • Creating an account
  • Verifying the email address
  • Viewing the account tag
  • Change the username, email address, password, and avatar
  • Change safety and privacy settings
  • List servers you’re in and members in those servers
  • Transfer and delete servers you own
  • Accept server invites
  • Delete your account

This program does not support messaging with Discord, please use Pidgin with the purple-discord plugin for that.

https://en.wikipedia.org/wiki/Discord_(software)

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

sudo apt-get -y install python3-harmony

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

You can also use apt command to install python3-harmony.

sudo apt -y install python3-harmony

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

sudo aptitude install python3-harmony

Summary

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