gpxinfo command not found

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

Introduction

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

gpxinfo: command not found

or when using sudo you get the following error message

sudo: gpxinfo: command not found

Solutions to gpxinfo: command not found

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

In Ubuntu gpxinfo is provided by gpxinfo package.

gpxinfo is:

gpxinfo extracts basic statistics from a GPX file. It prints meta info about the file and calculates data about tracks and routes in the file, among which are times, distances, and uphill and downhill information.

gpxinfo uses the gpxpy library.

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

sudo apt-get -y install gpxinfo

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

You can also use apt command to install gpxinfo.

sudo apt -y install gpxinfo

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

sudo aptitude install gpxinfo

Summary

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