cyclograph command not found

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

Introduction

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

cyclograph: command not found

or when using sudo you get the following error message

sudo: cyclograph: command not found

Solutions to cyclograph: command not found

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

In Ubuntu cyclograph is provided by cyclograph package.

cyclograph is:

CycloGraph is an application for plotting the elevation profile of routes. Its main value is in the graphical visualization of the difficulty of a road, in term of slope, difference in height, etc. Plots like these are often used in cycling competitions, but are also useful in other sports, such as hiking or running.

This package provides the command-line interface of CycloGraph.

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

sudo apt-get -y install cyclograph

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

You can also use apt command to install cyclograph.

sudo apt -y install cyclograph

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

sudo aptitude install cyclograph

Summary

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