wordcloud_cli command not found

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

Introduction

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

wordcloud_cli: command not found

or when using sudo you get the following error message

sudo: wordcloud_cli: command not found

Solutions to wordcloud_cli: command not found

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

In Ubuntu wordcloud_cli is provided by python3-wordcloud package.

python3-wordcloud is:

Compared to other wordclouds, this algorithm has the advantage of

  • filling all available space.
  • being able to use arbitrary masks.
  • having a stupid simple algorithm (with an efficient implementation) that can be easily modified.

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

sudo apt-get -y install python3-wordcloud

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

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

sudo apt -y install python3-wordcloud

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

sudo aptitude install python3-wordcloud

Summary

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