podget command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
podget: command not found
or when using sudo you get the following error message
sudo: podget: command not found
Solutions to podget: command not found
How To Fix podget: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu podget is provided by podget package.
podget is:
Podget is a simple podcast aggregator optimized for running as a scheduled background job (i.e. cron). It features support for downloading podcasts from RSS & ATOM XML feeds, for sorting the files into folders & categories, for importing URLs from iTunes PCAST files & OPML lists automatic M3U & ASX playlist creation, and automatic cleanup of old files. It also features automatic UTF-16 conversion for podcasts hosted on MS Windows servers. Run podget once to install the users configuration files to $HOME/.podget, and then customize them there.
To fix this problem, we can install more using the command below.
sudo apt-get -y install podget
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install podget.
sudo apt -y install podget
Or if you have aptitude installed you can use the following command.
sudo aptitude install podget
Summary
In this tutorial we learn how to fix podget command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.