cc-tool command not found

In this troubleshooting guide we learn how to fix cc-tool command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

cc-tool: command not found

or when using sudo you get the following error message

sudo: cc-tool: command not found

Solutions to cc-tool: command not found

How To Fix cc-tool: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu cc-tool is provided by cc-tool package.

cc-tool is:

This software provides support of Texas Instruments CC Debugger and several evaluation boards to program TI 8051-based System-On-Chip devices.

To fix this problem, we can install more using the command below.

sudo apt-get -y install cc-tool

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install cc-tool.

sudo apt -y install cc-tool

Or if you have aptitude installed you can use the following command.

sudo aptitude install cc-tool

Summary

In this tutorial we learn how to fix cc-tool command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.