snimpy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
snimpy: command not found
or when using sudo you get the following error message
sudo: snimpy: command not found
Solutions to snimpy: command not found
How To Fix snimpy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu snimpy is provided by snimpy package.
snimpy is:
Snimpy is a Python-based tool providing a simple interface to build SNMP queries. This interface aims at being the most Pythonic possible: you grab scalars using attributes and columns are like dictionaries.
Snimpy can either be used interactively through its console (derived from Python own console or from IPython if available) or by writing snimpy scripts which are just Python scripts with some global variables available.
To fix this problem, we can install more using the command below.
sudo apt-get -y install snimpy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install snimpy.
sudo apt -y install snimpy
Or if you have aptitude installed you can use the following command.
sudo aptitude install snimpy
Summary
In this tutorial we learn how to fix snimpy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.