gudhui command not found

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

Introduction

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

gudhui: command not found

or when using sudo you get the following error message

sudo: gudhui: command not found

Solutions to gudhui: command not found

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

In Ubuntu gudhui is provided by gudhui package.

gudhui is:

The GUDHI library is a generic open source C++ library for Topological Data Analysis (TDA) and Higher Dimensional Geometry Understanding. The library offers state-of-the-art data structures and algorithms to construct simplicial complexes and compute persistent homology.

This package contains GudhUI, a graphical interface to a few of GUDHI’s features. Be aware that it is quite rough around the edges.

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

sudo apt-get -y install gudhui

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

You can also use apt command to install gudhui.

sudo apt -y install gudhui

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

sudo aptitude install gudhui

Summary

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