nuitka3-run command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nuitka3-run: command not found
or when using sudo you get the following error message
sudo: nuitka3-run: command not found
Solutions to nuitka3-run: command not found
How To Fix nuitka3-run: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nuitka3-run is provided by nuitka package.
nuitka is:
This Python compiler achieves full language compatibility and compiles Python code into compiled objects that are not second class at all. Instead they can be used in the same way as pure Python objects.
To fix this problem, we can install more using the command below.
sudo apt-get -y install nuitka
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install nuitka.
sudo apt -y install nuitka
Or if you have aptitude installed you can use the following command.
sudo aptitude install nuitka
Summary
In this tutorial we learn how to fix nuitka3-run command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.