gpsprune command not found

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

Introduction

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

gpsprune: command not found

or when using sudo you get the following error message

sudo: gpsprune: command not found

Solutions to gpsprune: command not found

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

In Ubuntu gpsprune is provided by gpsprune package.

gpsprune is:

GpsPrune is an application for viewing, editing and converting coordinate data from GPS systems. It’s a tool for preparing GPS data before you go on a trip, and for playing with your collected GPS data after you get home again.

It can load data from arbitrary text-based formats (for example, any tab-separated or comma-separated file) or XML, or directly from a GPS receiver. It can display the data (as map view using OpenStreetMap images and as altitude profile), edit this data (for example delete points and ranges, sort waypoints, compress tracks), and save the data (in various text-based formats). It can also export data as a GPX file, or as KML/KMZ for import into Google Earth, or send it to a GPS receiver.

Some example uses of GpsPrune include cleaning up tracks by deleting wayward points - either recorded by error or by unintended detours. It can also be used to compare and combine tracks, convert to and from various formats, compress tracks, export data to Google Earth, or to analyse data to calculate distances, altitudes and so on.

Furthermore, GpsPrune is able to display the tracks in 3d format and lets you spin the model round to look at it from various directions. You can also export the model in POV format so that you can render a nice picture using Povray. You can also create charts of altitudes or speeds. It can also load Jpegs and read their coordinates from the EXIF tags, and export thumbnails of these photos to Kmz format so that they appear as popups in Google Earth. If your photos don’t have coordinates yet, GpsPrune can be used to connect them (either manually or automatically using the photo timestamps) to data points, and write these coordinates into the EXIF tags.

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

sudo apt-get -y install gpsprune

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

You can also use apt command to install gpsprune.

sudo apt -y install gpsprune

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

sudo aptitude install gpsprune

Summary

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