nudatus command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nudatus: command not found
or when using sudo you get the following error message
sudo: nudatus: command not found
Solutions to nudatus: command not found
How To Fix nudatus: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nudatus is provided by python3-nudatus package.
python3-nudatus is:
Nudatus was created to help fit longer, heavily-documented Python programs onto the micro:bit single-board computer (SBC). It should be suitable for similar platforms with restricted storage capacity.
Although the library is designed to be embedded, this package also provides
the nudatus
CLI utility.
Nudatus uses the tokenizer built into Python, so only supports the syntax of the version of Python it’s running on.
This package installs the library and CLI utility for Python 3.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-nudatus
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-nudatus.
sudo apt -y install python3-nudatus
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-nudatus
Summary
In this tutorial we learn how to fix nudatus command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.