irsim command not found

In this troubleshooting guide we learn how to fix irsim command not found error message

Introduction

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

irsim: command not found

or when using sudo you get the following error message

sudo: irsim: command not found

Solutions to irsim: command not found

How To Fix irsim: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu irsim is provided by irsim package.

irsim is:

IRSIM is a tool for simulating digital circuits. It is a “switch-level” simulator; that is, it treats transistors as ideal switches. Extracted capacitance and lumped resistance values are used to make the switch a little bit more realistic than the ideal, using the RC time constants to predict the relative timing of events.

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

sudo apt-get -y install irsim

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

You can also use apt command to install irsim.

sudo apt -y install irsim

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

sudo aptitude install irsim

Summary

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