drawtiming command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
drawtiming: command not found
or when using sudo you get the following error message
sudo: drawtiming: command not found
Solutions to drawtiming: command not found
How To Fix drawtiming: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu drawtiming is provided by drawtiming package.
drawtiming is:
Drawtiming is a command-line tool for documenting hardware designs through timing diagrams. In inputs textual signal descriptions and outputs image timing diagrams in many possible formats.
To fix this problem, we can install more using the command below.
sudo apt-get -y install drawtiming
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install drawtiming.
sudo apt -y install drawtiming
Or if you have aptitude installed you can use the following command.
sudo aptitude install drawtiming
Summary
In this tutorial we learn how to fix drawtiming command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.