eepget command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
eepget: command not found
or when using sudo you get the following error message
sudo: eepget: command not found
Solutions to eepget: command not found
How To Fix eepget: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu eepget is provided by i2p-router package.
i2p-router is:
I2P is an anonymizing network, offering a simple layer that identity-sensitive applications can use to securely communicate. All data is wrapped with several layers of encryption, and the network is both distributed and dynamic, with no trusted parties.
To fix this problem, we can install more using the command below.
sudo apt-get -y install i2p-router
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install i2p-router.
sudo apt -y install i2p-router
Or if you have aptitude installed you can use the following command.
sudo aptitude install i2p-router
Summary
In this tutorial we learn how to fix eepget command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.