rtv command not found
In this troubleshooting guide we learn how to fix rtv command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
rtv: command not found
or when using sudo you get the following error message
sudo: rtv: command not found
Solutions to rtv: command not found
How To Fix rtv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu rtv is provided by rtv package.
rtv is:
A simple terminal viewer for Reddit. rtv provides an interface to view and interact with Reddit from your terminal.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rtv
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rtv.
sudo apt -y install rtv
Or if you have aptitude installed you can use the following command.
sudo aptitude install rtv
Summary
In this tutorial we learn how to fix rtv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.