gnss-sdr command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gnss-sdr: command not found
or when using sudo you get the following error message
sudo: gnss-sdr: command not found
Solutions to gnss-sdr: command not found
How To Fix gnss-sdr: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gnss-sdr is provided by gnss-sdr package.
gnss-sdr is:
Global Navigation Satellite Systems receiver defined by software. It performs all the signal processing from raw signal samples up to the computation of the Position-Velocity-Time solution, including code and phase observables. It is able to work with raw data files or, if there is computational power enough, in real time with suitable radiofrequency front-ends. This software is mainly developed at CTTC (Centre Tecnologic de Telecomunicacions de Catalunya, http://www.cttc.es) with contributions from around the world. More info at https://gnss-sdr.org
To fix this problem, we can install more using the command below.
sudo apt-get -y install gnss-sdr
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gnss-sdr.
sudo apt -y install gnss-sdr
Or if you have aptitude installed you can use the following command.
sudo aptitude install gnss-sdr
Summary
In this tutorial we learn how to fix gnss-sdr command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.