retweet command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
retweet: command not found
or when using sudo you get the following error message
sudo: retweet: command not found
Solutions to retweet: command not found
How To Fix retweet: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu retweet is provided by retweet package.
retweet is:
Retweet automatically retweets tweets from a Twitter account to another one. It also supports a range of criteria a tweet must meet in order to perform the action of retweeting it.
To fix this problem, we can install more using the command below.
sudo apt-get -y install retweet
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install retweet.
sudo apt -y install retweet
Or if you have aptitude installed you can use the following command.
sudo aptitude install retweet
Summary
In this tutorial we learn how to fix retweet command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.