m16c-flash command not found
In this troubleshooting guide we learn how to fix m16c-flash command not found error message
Introduction
When you run more command in linux terminal / console, you get the following error message
m16c-flash: command not found
or when using sudo you get the following error message
sudo: m16c-flash: command not found
Solutions to m16c-flash: command not found
How To Fix m16c-flash: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu m16c-flash is provided by m16c-flash package.
m16c-flash is:
m16c-flash uses a serial protocol to program Renesas M16C and R8C microcontrollers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install m16c-flash
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install m16c-flash.
sudo apt -y install m16c-flash
Or if you have aptitude installed you can use the following command.
sudo aptitude install m16c-flash
Summary
In this tutorial we learn how to fix m16c-flash command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.