nqc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nqc: command not found
or when using sudo you get the following error message
sudo: nqc: command not found
Solutions to nqc: command not found
How To Fix nqc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nqc is provided by nqc package.
nqc is:
The LEGO Mindstorms RCX is a Hitachi microcontroller embedded into a LEGO brick. This package lets you write programs in a C-like language and download them to your RCX using the serial or USB infrared tower included with the RCX.
To fix this problem, we can install more using the command below.
sudo apt-get -y install nqc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install nqc.
sudo apt -y install nqc
Or if you have aptitude installed you can use the following command.
sudo aptitude install nqc
Summary
In this tutorial we learn how to fix nqc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.