snekde command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
snekde: command not found
or when using sudo you get the following error message
sudo: snekde: command not found
Solutions to snekde: command not found
How To Fix snekde: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu snekde is provided by snek package.
snek is:
Snek is a small python-like language designed for embedded computers. It can run on systems as small as an Arduino Duemilanove board, which is an ATmega 328 processor with 32kB of flash and 2kB of ram. This package includes binaries and installation tools for many targets along with the snekde integrated development environment.
To fix this problem, we can install more using the command below.
sudo apt-get -y install snek
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install snek.
sudo apt -y install snek
Or if you have aptitude installed you can use the following command.
sudo aptitude install snek
Summary
In this tutorial we learn how to fix snekde command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.