trip command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
trip: command not found
or when using sudo you get the following error message
sudo: trip: command not found
Solutions to trip: command not found
How To Fix trip: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu trip is provided by vasttrafik-cli package.
vasttrafik-cli is:
Västtrafik is the agency for public transport in Västra Götaland (Sweden).
This package provies a CLI to access their API and plan trips or see the incoming vehicles at a given stop.
To fix this problem, we can install more using the command below.
sudo apt-get -y install vasttrafik-cli
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install vasttrafik-cli.
sudo apt -y install vasttrafik-cli
Or if you have aptitude installed you can use the following command.
sudo aptitude install vasttrafik-cli
Summary
In this tutorial we learn how to fix trip command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.