gpxviewer command not found

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

Introduction

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

gpxviewer: command not found

or when using sudo you get the following error message

sudo: gpxviewer: command not found

Solutions to gpxviewer: command not found

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

In Ubuntu gpxviewer is provided by gpxviewer package.

gpxviewer is:

This application allows the user to load a GPS trace, in the GPX file format, and read it in a presentable way. You are shown a few statistics, such as the duration or maximum speed. You are also shown the trace on an OpenStreetMap map, where you can scroll around and zoom.

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

sudo apt-get -y install gpxviewer

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

You can also use apt command to install gpxviewer.

sudo apt -y install gpxviewer

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

sudo aptitude install gpxviewer

Summary

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